Package com.iizix.api.vs
Annotation Type JavaActionActor
- @Documented @Retention(RUNTIME) @Target(TYPE) @Repeatable(JavaActionActors.class) public @interface JavaActionActor Annotation for tagging classes that are Java Action Actors.- Example: - @JavaActionActorAnnotation(ref="Proj:/vs/subFolder/OneVS", modifiesVS=true, descr="This is My Java Action Actor") public class MyJavaActionActor extends AbstractJavaActionActor { public MyJavaActionActor() { ... } // Action runs here. public void onAction() { ... } }- Author:
- Christopher Mindus
 
- Required Element Summary- Required Elements - Modifier and Type - Required Element - Description - java.lang.String- descrThe description of the Action Actor class, used in the Eclipse UI and in Server Monitoring.- boolean- modifiesVSSpecifies if this action modifies the VirtualSpace it is attached to or not.- java.lang.String- refThe Full String Reference to the VirtualSpace property.