File: ValueAttrAnnotation.java

package info (click to toggle)
asm2 2.2.3-6
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 2,548 kB
  • ctags: 2,786
  • sloc: java: 22,655; xml: 1,218; makefile: 32
file content (12 lines) | stat: -rw-r--r-- 241 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12

package annotations;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;


@Retention(RetentionPolicy.RUNTIME)
public @interface ValueAttrAnnotation {
  String value() default "defaultValue";
}