blob: 843cf4481ea67bdbc1145361e637e04e29938fb9 [file] [log] [blame]
package annotations;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@Retention(RetentionPolicy.RUNTIME)
public @interface ValueAttrAnnotation {
String value() default "defaultValue";
}