mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-17 11:40:50 +07:00
16 lines
312 B
Plaintext
16 lines
312 B
Plaintext
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
|
|
/**
|
|
* 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)
|
|
public @interface A2 {
|
|
String value ();
|
|
}
|