mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 23:20:57 +07:00
17 lines
276 B
Java
17 lines
276 B
Java
@Model(usages = @Usage("${" + SomeClass.xxx + "}"))
|
|
public class SomeClass {
|
|
|
|
public static final String xxx = "__REQUEST_PARAMETERS";
|
|
|
|
public String getModelName() {
|
|
return xxx;
|
|
}
|
|
}
|
|
|
|
@interface Model {
|
|
Usage usages();
|
|
}
|
|
@interface Usage {
|
|
String value();
|
|
}
|