Package | Description |
---|---|
griffon.core.controller |
Controller action support.
|
org.codehaus.griffon.runtime.core.artifact |
Artifact implementation [INTERNAL USE].
|
org.codehaus.griffon.runtime.core.controller |
Controller action implementation [INTERNAL USE].
|
org.codehaus.griffon.runtime.javafx.controller |
Controller action implementation [INTERNAL USE].
|
org.codehaus.griffon.runtime.lanterna.controller |
Controller action implementation [INTERNAL USE].
|
org.codehaus.griffon.runtime.pivot.controller |
Controller action implementation [INTERNAL USE].
|
org.codehaus.griffon.runtime.swing.controller |
Controller action implementation [INTERNAL USE].
|
Modifier and Type | Method and Description |
---|---|
Action |
ActionManager.actionFor(GriffonController controller,
String actionName) |
Action |
ActionFactory.create(GriffonController controller,
ActionMetadata actionMetadata) |
Modifier and Type | Method and Description |
---|---|
Map<String,Action> |
ActionManager.actionsFor(GriffonController controller) |
Modifier and Type | Method and Description |
---|---|
Object |
ActionHandler.after(ActionExecutionStatus status,
Action action,
Object[] args,
Object result)
Called after the action has been aborted or executed, even if an exception
occurred during execution.
|
Object[] |
ActionHandler.before(Action action,
Object[] args)
Called before an action is executed.
|
void |
ActionHandler.configure(Action action,
Method method)
Inspect the action during the configuration phase.
|
boolean |
ActionHandler.exception(Exception exception,
Action action,
Object[] args)
Called after the action has been executed when an exception occurred
during execution.
|
void |
ActionManager.invokeAction(Action action,
Object... args)
Execute the action using registered
ActionHandler s. |
void |
ActionHandler.update(Action action)
Update the action's properties.
|
void |
ActionManager.updateAction(Action action)
Update the action's properties using registered
ActionHandler s. |
Modifier and Type | Method and Description |
---|---|
protected Action |
AbstractGriffonView.actionFor(GriffonController controller,
String actionName) |
protected Action |
AbstractGriffonController.actionFor(String actionName) |
Modifier and Type | Class and Description |
---|---|
class |
AbstractAction |
class |
ActionDecorator |
class |
DefaultAction |
Modifier and Type | Method and Description |
---|---|
Action |
NoopActionManager.actionFor(GriffonController controller,
String actionName) |
Action |
AbstractActionManager.actionFor(GriffonController controller,
String actionName) |
Action |
DefaultActionFactory.create(GriffonController controller,
ActionMetadata actionMetadata) |
protected Action |
AbstractActionManager.createAndConfigureAction(GriffonController controller,
String actionName,
Method method) |
protected Action |
AbstractActionManager.createControllerAction(GriffonController controller,
String actionName,
Method method) |
Modifier and Type | Method and Description |
---|---|
Map<String,Action> |
NoopActionManager.actionsFor(GriffonController controller) |
Map<String,Action> |
AbstractActionManager.actionsFor(GriffonController controller) |
Modifier and Type | Method and Description |
---|---|
Object |
AbstractActionHandler.after(ActionExecutionStatus status,
Action action,
Object[] args,
Object result) |
Object[] |
AbstractActionHandler.before(Action action,
Object[] args) |
void |
AbstractActionHandler.configure(Action action,
Method method) |
protected void |
DefaultActionManager.doConfigureAction(Action action,
GriffonController controller,
String normalizeNamed,
String keyPrefix) |
protected abstract void |
AbstractActionManager.doConfigureAction(Action action,
GriffonController controller,
String normalizeNamed,
String keyPrefix) |
boolean |
AbstractActionHandler.exception(Exception exception,
Action action,
Object[] args) |
void |
NoopActionManager.invokeAction(Action action,
Object... args) |
void |
AbstractActionManager.invokeAction(Action action,
Object... args) |
void |
AbstractActionHandler.update(Action action) |
void |
NoopActionManager.updateAction(Action action) |
void |
AbstractActionManager.updateAction(Action action) |
Constructor and Description |
---|
ActionDecorator(Action delegate) |
Modifier and Type | Class and Description |
---|---|
class |
JavaFXGriffonControllerAction |
Modifier and Type | Method and Description |
---|---|
Action |
JavaFXActionFactory.create(GriffonController controller,
ActionMetadata actionMetadata) |
Modifier and Type | Method and Description |
---|---|
protected void |
JavaFXActionManager.doConfigureAction(Action action,
GriffonController controller,
String normalizeNamed,
String keyPrefix) |
Modifier and Type | Class and Description |
---|---|
class |
LanternaGriffonControllerAction |
Modifier and Type | Method and Description |
---|---|
Action |
LanternaActionFactory.create(GriffonController controller,
ActionMetadata actionMetadata) |
Modifier and Type | Method and Description |
---|---|
protected void |
LanternaActionManager.doConfigureAction(Action action,
GriffonController controller,
String normalizeNamed,
String keyPrefix) |
Modifier and Type | Class and Description |
---|---|
class |
PivotGriffonControllerAction |
Modifier and Type | Method and Description |
---|---|
Action |
PivotActionFactory.create(GriffonController controller,
ActionMetadata actionMetadata) |
Modifier and Type | Method and Description |
---|---|
protected void |
PivotActionManager.doConfigureAction(Action action,
GriffonController controller,
String normalizeNamed,
String keyPrefix) |
Modifier and Type | Class and Description |
---|---|
class |
SwingGriffonControllerAction |
Modifier and Type | Method and Description |
---|---|
Action |
SwingActionFactory.create(GriffonController controller,
ActionMetadata actionMetadata) |
Modifier and Type | Method and Description |
---|---|
protected void |
SwingActionManager.doConfigureAction(Action action,
GriffonController controller,
String normalizeNamed,
String keyPrefix) |