Skip to content

Commit

Permalink
💚 Resolve compilation error for @actions annotation
Browse files Browse the repository at this point in the history
accessibility 

fix #59
  • Loading branch information
SaifJerbi committed Jun 27, 2017
1 parent e514e96 commit 36ebc3a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/main/java/io/asfjava/ui/core/form/Action.java
Expand Up @@ -13,8 +13,3 @@

String onClick() default "";
}

@Retention(RetentionPolicy.RUNTIME)
@interface Actions {
Action[] value();
}
9 changes: 9 additions & 0 deletions src/main/java/io/asfjava/ui/core/form/Actions.java
@@ -0,0 +1,9 @@
package io.asfjava.ui.core.form;

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

@Retention(RetentionPolicy.RUNTIME)
public @interface Actions {
Action[] value();
}

0 comments on commit 36ebc3a

Please sign in to comment.