tests/fixes

This commit is contained in:
Alex Tkachman
2011-10-20 07:25:22 +02:00
parent efa9a25ea5
commit 417bb26646
10 changed files with 150 additions and 118 deletions
@@ -0,0 +1,15 @@
package jet.typeinfo;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* @author alex.tkachman
*/
@Target({ElementType.PARAMETER})
@Retention(RetentionPolicy.RUNTIME)
public @interface JetParameterName {
String value ();
}