Uses of Interface
net.sf.jguiraffe.gui.builder.action.ActionManager
-
Packages that use ActionManager Package Description net.sf.jguiraffe.gui.builder.action Theaction
sub 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.net.sf.jguiraffe.gui.builder.impl Here default implementations of theBuilder
interfaces can be found. -
-
Uses of ActionManager in net.sf.jguiraffe.gui.builder.action
Classes in net.sf.jguiraffe.gui.builder.action that implement ActionManager Modifier and Type Class Description class
ActionManagerWrapper
A base class for wrapper implementations of theActionManager
interface.Methods in net.sf.jguiraffe.gui.builder.action that return ActionManager Modifier and Type Method Description ActionManager
AbstractPopupMenuBuilder. getActionManager()
Returns theActionManager
this builder delegates to.ActionManager
ActionBuilder. getActionManager()
Returns a reference to the action manager.ActionManager
ActionManagerWrapper. getWrappedActionManager()
Returns a reference to the wrappedActionManager
object.Methods in net.sf.jguiraffe.gui.builder.action with parameters of type ActionManager Modifier and Type Method Description void
ActionBuilder. setActionManager(ActionManager actionManager)
Sets the action manager.Constructors in net.sf.jguiraffe.gui.builder.action with parameters of type ActionManager Constructor Description AbstractPopupMenuBuilder(ActionManager manager, ActionBuilder builder)
Creates a new instance ofAbstractPopupMenuBuilder
.ActionManagerWrapper(ActionManager wrapped)
Creates a new instance ofActionManagerWrapper
and initializes it with the wrappedActionManager
. -
Uses of ActionManager in net.sf.jguiraffe.gui.builder.action.tags
Methods in net.sf.jguiraffe.gui.builder.action.tags with parameters of type ActionManager Modifier and Type Method Description protected abstract void
ActionControlTag. createActionControl(ActionManager manager, FormAction action, Object parent)
Creates a control and associates it with the given action.protected void
MenuItemTag. createActionControl(ActionManager manager, FormAction action, Object parent)
Creates a menu item based on an action definition.protected void
ToolButtonTag. createActionControl(ActionManager manager, FormAction action, Object parent)
Creates a toolbar button that is associated with an action.protected abstract ComponentHandler<?>
ActionControlTag. createElementHandler(ActionManager manager, ActionData data, Object parent)
Creates a control based on the given action data object.protected ComponentHandler<?>
MenuItemTag. createElementHandler(ActionManager manager, ActionData data, Object parent)
Creates a menu item based on an action data object.protected ComponentHandler<?>
ToolButtonTag. createElementHandler(ActionManager manager, ActionData data, Object parent)
Creates a toolbar button based on the given data object. -
Uses of ActionManager in net.sf.jguiraffe.gui.builder.impl
Methods in net.sf.jguiraffe.gui.builder.impl that return ActionManager Modifier and Type Method Description ActionManager
JellyBuilder. getActionManager()
Returns the action manager used by this builder.Methods in net.sf.jguiraffe.gui.builder.impl with parameters of type ActionManager Modifier and Type Method Description void
JellyBuilder. setActionManager(ActionManager actionManager)
Sets the action manager to be used by this builder.
-