Package | Description |
---|---|
net.sf.jguiraffe.gui.app |
In this package the main application class can be found.
|
net.sf.jguiraffe.gui.builder.enablers |
A package with classes for enabling or disabling other elements.
|
Modifier and Type | Method and Description |
---|---|
ElementEnabler |
CommandActionTask.getAfterEnabler()
Returns the
ElementEnabler that is invoked after the execution of
this task. |
ElementEnabler |
CommandActionTask.getBeforeEnabler()
Returns the
ElementEnabler that is invoked before the execution
of this task. |
Modifier and Type | Method and Description |
---|---|
void |
CommandActionTask.setAfterEnabler(ElementEnabler afterEnabler)
Sets the
ElementEnabler that is invoked after the execution of
this task. |
void |
CommandActionTask.setBeforeEnabler(ElementEnabler beforeEnabler)
Sets the
ElementEnabler that is invoked before the execution of
this task. |
Modifier and Type | Class and Description |
---|---|
class |
ActionEnabler
A specialized implementation of the
ElementEnabler interface that can
change the enabled state of actions. |
class |
ActionGroupEnabler
A specialized implementation of the
ElementEnabler interface that can
change the enabled state of action groups. |
class |
ChainElementEnabler
A specialized implementation of the
ElementEnabler interface that
maintains an arbitrary number of other ElementEnabler objects. |
class |
ComponentEnabler
A specialized implementation of the
ElementEnabler interface that can
change the enabled state of components. |
class |
InverseEnabler
A specialized implementation of the
ElementEnabler interface that
wraps another ElementEnabler and inverses the setEnabledState() implementation of this wrapped enabler. |
class |
NullEnabler
A trivial implementation of the
ElementEnabler interface that does
nothing. |
Modifier and Type | Method and Description |
---|---|
ElementEnabler |
EnablerBuilder.build()
Creates an
ElementEnabler based on the specifications that have
been added to this builder. |
protected ElementEnabler |
EnablerBuilder.createEnabler(String prefix,
String name)
Creates an
ElementEnabler for the specified prefix. |
ElementEnabler |
InverseEnabler.getWrappedEnabler()
Returns the
ElementEnabler wrapped by this object. |
protected ElementEnabler |
EnablerBuilder.processSpecification(String spec)
Processes the specified specification and creates a corresponding
ElementEnabler . |
Modifier and Type | Method and Description |
---|---|
Collection<ElementEnabler> |
ChainElementEnabler.getChildEnablers()
Returns a collection of the
ElementEnabler objects maintained by
this ChainElementEnabler . |
Constructor and Description |
---|
InverseEnabler(ElementEnabler wrapped)
Creates a new instance of
InverseEnabler and initializes it with
ElementEnabler to be wrapped. |
Constructor and Description |
---|
ChainElementEnabler(Collection<ElementEnabler> children)
Creates a new instance of
ChainElementEnabler and initializes it
with the given collection of child ElementEnabler objects. |
Copyright © 2016 The JGUIraffe Team. All rights reserved.