Uses of Interface
net.sf.jguiraffe.gui.builder.action.FormAction
-
Packages that use FormAction Package Description net.sf.jguiraffe.gui.builder.action Theactionsub package of the builder contains interfaces and classes for dealing with actions and related objects during a builder operation.net.sf.jguiraffe.gui.builder.action.tags Here the tags for creating actions and related objects are defined. -
-
Uses of FormAction in net.sf.jguiraffe.gui.builder.action
Methods in net.sf.jguiraffe.gui.builder.action that return FormAction Modifier and Type Method Description FormActionActionManager. createAction(ActionBuilder actionBuilder, ActionData actionData)Creates an action object based on the provided information.FormActionActionManagerWrapper. createAction(ActionBuilder actionBuilder, ActionData actionData)Creates an action object based on the provided information.FormActionActionStore. getAction(String name)Returns the action with the given name.FormActionActionStore. removeAction(String name)Removes the action with the specified name from this store.Methods in net.sf.jguiraffe.gui.builder.action that return types with arguments of type FormAction Modifier and Type Method Description static Collection<FormAction>ActionHelper. fetchActionsInGroup(ActionStore actionStore, String groupName)Returns all actions that belong to the specified group in the givenActionStore.static Collection<FormAction>ActionHelper. fetchAllActionsInGroup(ActionStore actionStore, String groupName, boolean distinct)Returns all actions that belong to the specified group in the givenActionStoreor one of its parents.Collection<FormAction>ActionStore. getActions(Collection<String> names)Returns all action objects whose names are specified in the given collection.Methods in net.sf.jguiraffe.gui.builder.action with parameters of type FormAction Modifier and Type Method Description PopupMenuBuilderAbstractPopupMenuBuilder. addAction(FormAction action)Adds an action to the current menu.voidActionStore. addAction(FormAction action)Adds the specified action to this store.PopupMenuBuilderPopupMenuBuilder. addAction(FormAction action)Adds an action to the current menu.protected voidSimplePopupMenuHandler. addAction(PopupMenuBuilder builder, ComponentBuilderData compData, FormAction action)Adds an action to the menu constructed by this handler.static ObjectActionInvoker. create(Class<?>[] listenerClasses, FormAction action, EventFilter filter)Creates an action invoker proxy that implements all the specified listener interfaces.static ObjectActionInvoker. create(Class<?> listenerClass, FormAction action)Creates an action invoker proxy for the specified listener interface that will invoke the given action whenever a method of the listener interface is called.static ObjectActionInvoker. create(Class<?> listenerClass, FormAction action, EventFilter filter)Creates an action invoker proxy for the specified listener interface that will invoke the given action when an event is triggered that is accepted by the passed in filter.ObjectActionManager. createMenuItem(ActionBuilder actionBuilder, FormAction action, boolean checked, Object parent)Creates a menu item based on the specified action object.ObjectActionManagerWrapper. createMenuItem(ActionBuilder actionBuilder, FormAction action, boolean checked, Object parent)Creates a menu item based on the specified action object.ObjectActionManager. createToolbarButton(ActionBuilder actionBuilder, FormAction action, boolean checked, Object parent)Creates a toolbar button based on the specified action object.ObjectActionManagerWrapper. createToolbarButton(ActionBuilder actionBuilder, FormAction action, boolean checked, Object parent)Creates a toolbar button based on the specified action object.static voidActionHelper. invokeActionTask(Object task, FormAction action, BuilderEvent event)Invokes the specified action task.voidActionTask. run(FormAction action, BuilderEvent event)Implements the logic behind an action.Method parameters in net.sf.jguiraffe.gui.builder.action with type arguments of type FormAction Modifier and Type Method Description static voidActionHelper. enableActions(Collection<FormAction> actions, boolean enabled)Sets the enabled flag for all actions in the specified collection. -
Uses of FormAction in net.sf.jguiraffe.gui.builder.action.tags
Methods in net.sf.jguiraffe.gui.builder.action.tags that return FormAction Modifier and Type Method Description protected FormActionEventListenerTag. fetchAction()Tries to obtain the action that is to be invoked by the event listener.Methods in net.sf.jguiraffe.gui.builder.action.tags with parameters of type FormAction Modifier and Type Method Description protected abstract voidActionControlTag. createActionControl(ActionManager manager, FormAction action, Object parent)Creates a control and associates it with the given action.protected voidMenuItemTag. createActionControl(ActionManager manager, FormAction action, Object parent)Creates a menu item based on an action definition.protected voidToolButtonTag. createActionControl(ActionManager manager, FormAction action, Object parent)Creates a toolbar button that is associated with an action.
-