Package | Description |
---|---|
org.mdi.app |
Main package of the framework.
|
org.mdi.app.jfx |
Specific JavaFX classes for the Main package of the framework.
|
org.mdi.app.swing |
Specific Swing classes for the Main package of the framework.
|
org.mdi.bootstrap |
Minimal Bootstrap interfaces for the framework.
|
org.mdi.bootstrap.swing |
Specific Swing Bootstrap interfaces for the framework.
|
org.mdi.util |
Utility classes.
|
org.mdi.util.jfx |
JavaFX specific Utility classes.
|
org.mdi.util.swing |
Swing specific Utility classes.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractApplication.endAction(MDIAction action)
Ends a generic action.
|
void |
AbstractApplication.executeAction(MDIAction action,
short blockingType)
Execute a generic Action.
|
void |
AbstractApplication.executeAction(MDIAction action,
short blockingType,
java.lang.ClassLoader loader)
Execute a generic Action, using a specific Classloader.
|
void |
AbstractApplication.startTime(MDIAction action)
Start to count the time for the last operation, and show the statusBar progress.
|
long |
AbstractApplication.stopTime(MDIAction action)
Return the time after the last operation and stop the progress bar if there is any.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractJFXApplication.endAction(MDIAction action)
Ends a generic action.
|
void |
AbstractJFXApplication.executeAction(MDIAction action,
short blockingType)
Execute a generic Action.
|
void |
AbstractJFXApplication.executeAction(MDIAction action,
short blockingType,
java.lang.ClassLoader loader)
Execute a generic Action, using a specific Classloader.
|
void |
AbstractJFXApplication.startTime(MDIAction action)
Start to count the time for the last operation, and show the statusBar progress.
|
long |
AbstractJFXApplication.stopTime(MDIAction action)
Return the time after the last operation and stop the progress bar if there is any.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractMDIApplication.endAction(MDIAction action)
Ends a generic action.
|
void |
AbstractMDIApplication.executeAction(MDIAction action,
short blockingType)
Execute a generic Action.
|
void |
AbstractMDIApplication.executeAction(MDIAction action,
short blockingType,
java.lang.ClassLoader loader)
Execute a generic Action, using a specific Classloader.
|
void |
AbstractMDIApplication.startTime(MDIAction action)
Start to count the time for the last operation, and show the statusBar progress.
|
long |
AbstractMDIApplication.stopTime(MDIAction action)
Return the time after the last operation and stop the progress bar if there is any.
|
Modifier and Type | Method and Description |
---|---|
void |
MDIActionHandler.afterAction(MDIAction action)
Method that must be executed after the
run() method
of the MDIAction. |
void |
MDIActionHandler.beforeAction(MDIAction action)
Method that must be executed before the
run() method
of the MDIAction. |
void |
MDIApplication.endAction(MDIAction action)
Ends a generic action.
|
default void |
MDIApplication.executeAction(MDIAction action)
Execute a generic Action.
|
default void |
MDIApplication.executeAction(MDIAction action,
java.lang.ClassLoader loader)
Execute a generic Action, using a specific Classloader.
|
void |
MDIApplication.executeAction(MDIAction action,
short blockingType)
Execute a generic Action.
|
void |
MDIApplication.executeAction(MDIAction action,
short blockingType,
java.lang.ClassLoader loader)
Execute a generic Action, using a specific Classloader.
|
void |
MDIApplication.startTime(MDIAction action)
Start to count the time for the last operation, and show the statusBar progress.
|
long |
MDIApplication.stopTime(MDIAction action)
Stop the time counting.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractMDIAction
An MDIAction that is also an AbstractAction, which allows to use it directly in swing components.
|
Modifier and Type | Method and Description |
---|---|
void |
ThreadQueue.addAction(MDIAction action)
Add an Action to the list of Actions to execute.
|
void |
ThreadQueue.addAction(MDIAction action,
java.lang.ClassLoader loader)
Add an Action to the list of Actions to execute.
|
protected abstract void |
ThreadQueue.executeAction(MDIAction action,
java.lang.ClassLoader loader) |
Modifier and Type | Method and Description |
---|---|
protected void |
JFXThreadQueue.executeAction(MDIAction action,
java.lang.ClassLoader loader) |
Modifier and Type | Method and Description |
---|---|
protected void |
SwingThreadQueue.executeAction(MDIAction action,
java.lang.ClassLoader loader) |