We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e514e96 commit 36ebc3aCopy full SHA for 36ebc3a
src/main/java/io/asfjava/ui/core/form/Action.java
@@ -13,8 +13,3 @@
13
14
String onClick() default "";
15
}
16
-
17
-@Retention(RetentionPolicy.RUNTIME)
18
-@interface Actions {
19
- Action[] value();
20
-}
src/main/java/io/asfjava/ui/core/form/Actions.java
@@ -0,0 +1,9 @@
1
+package io.asfjava.ui.core.form;
2
+
3
+import java.lang.annotation.Retention;
4
+import java.lang.annotation.RetentionPolicy;
5
6
+@Retention(RetentionPolicy.RUNTIME)
7
+public @interface Actions {
8
+ Action[] value();
9
+}
0 commit comments