blob: ce2ddb0afcdbd9d829cd105af44fd2d98d30464f [file] [log] [blame]
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.ElementType;
import java.lang.annotation.Target;
/**
* Created by IntelliJ IDEA.
* User: db
* Date: 06.08.11
* Time: 14:56
* To change this template use File | Settings | File Templates.
*/
@Retention(RetentionPolicy.SOURCE)
@Target({ElementType.TYPE, ElementType.METHOD})
public @interface A2 {
String value ();
}