Uses of Class
net.sf.jguiraffe.gui.builder.action.ActionStore
-
Packages that use ActionStore Package Description net.sf.jguiraffe.gui.app In this package the main application class can be found.net.sf.jguiraffe.gui.builder The main package of the builder.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. -
-
Uses of ActionStore in net.sf.jguiraffe.gui.app
Methods in net.sf.jguiraffe.gui.app that return ActionStore Modifier and Type Method Description ActionStore
ApplicationBuilderData. getActionStore()
Returns the action store.ActionStore
ApplicationContext. getActionStore()
Returns the application'sActionStore
.ActionStore
ApplicationContextImpl. getActionStore()
Returns the application'sActionStore
.Methods in net.sf.jguiraffe.gui.app with parameters of type ActionStore Modifier and Type Method Description void
ApplicationBuilderData. setActionStore(ActionStore actionStore)
Sets the action store.void
ApplicationContext. setActionStore(ActionStore actionStore)
Sets the application'sActionStore
.void
ApplicationContextImpl. setActionStore(ActionStore actionStore)
Sets the application'sActionStore
. -
Uses of ActionStore in net.sf.jguiraffe.gui.builder
Methods in net.sf.jguiraffe.gui.builder that return ActionStore Modifier and Type Method Description ActionStore
BuilderData. getActionStore()
Returns a reference to the action store. -
Uses of ActionStore in net.sf.jguiraffe.gui.builder.action
Methods in net.sf.jguiraffe.gui.builder.action that return ActionStore Modifier and Type Method Description ActionStore
ActionBuilder. getActionStore()
Returns a reference to the current action store.ActionStore
ActionStore. getParent()
Returns the parent store.Methods in net.sf.jguiraffe.gui.builder.action with parameters of type ActionStore 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 givenActionStore
or one of its parents.static Set<String>
ActionHelper. getAllGroupNames(ActionStore actionStore)
Returns the names of all groups defined for the specifiedActionStore
and its parents.void
ActionBuilder. setActionStore(ActionStore actionStore)
Sets the action store.void
ActionStore. setParent(ActionStore parent)
Sets the parent store.Constructors in net.sf.jguiraffe.gui.builder.action with parameters of type ActionStore Constructor Description ActionStore(ActionStore parent)
Creates a new instance ofActionStore
and initializes the parent reference.
-