package eu.ggnet.saft.api.ui; import java.lang.annotation.*; import static java.lang.annotation.ElementType.TYPE; import static java.lang.annotation.RetentionPolicy.RUNTIME; /** * Annotate a dependend Action, it will indecated as the default one. * * @author oliver.guenther */ @Documented @Retention(RUNTIME) @Target(TYPE) public @interface DefaultAction { }