|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use ActionHandler | |
|---|---|
| ilog.views.appframe | Provides common classes that are used within all Java Application Framework modules. |
| ilog.views.appframe.docview | Provides classes that are involved in the Document/View architecture of the Java Application Framework. |
| ilog.views.appframe.docview.project | Provides the interfaces and classes for defining project documents. |
| ilog.views.appframe.event | Provides interfaces and classes for dealing with different types of events fired by main Application Framework classes. |
| ilog.views.appframe.swing | Provides custom Swing components that are initialized from the settings. |
| ilog.views.appframe.swing.mdi | Provides interfaces and classes for managing MDI Swing main windows. |
| Uses of ActionHandler in ilog.views.appframe |
|---|
| Methods in ilog.views.appframe that return ActionHandler | |
|---|---|
ActionHandler[] |
IlvApplication.getActionHandlers(String actionCommand)
Returns an array of action handlers which can process actions with the specified actionCommand. |
| Methods in ilog.views.appframe with parameters of type ActionHandler | |
|---|---|
void |
IlvApplication.addActionHandler(ActionHandler handler)
Adds the specified action handler to receive action events. |
void |
IlvApplication.removeActionHandler(ActionHandler handler)
Removes the specified action handler from the list of action handlers managed by the application. |
| Uses of ActionHandler in ilog.views.appframe.docview |
|---|
| Subinterfaces of ActionHandler in ilog.views.appframe.docview | |
|---|---|
interface |
IlvDocument
A document manages the data to be edited inside an application. |
interface |
IlvDocumentView
A document view visualizes or allows for editing the data of an IlvDocument. |
interface |
IlvFileDocument
Defines documents that are initialized from files. |
interface |
IlvMDIViewContainer
Defines view containers attached to one IlvDocument
instance, like internal frames or a pane in a tabbed pane. |
interface |
IlvStreamDocument
Defines documents that are read and write their data from streams. |
interface |
IlvViewContainer
Defines objects that contain document views. |
| Classes in ilog.views.appframe.docview that implement ActionHandler | |
|---|---|
class |
IlvAbstractDocument
An implementation of the IlvDocument interface
to serve as a basis for implementing various kinds of documents. |
class |
IlvAbstractFileDocument
An implementation of the file document interface to serve as a basis for implementing various kinds of file documents. |
class |
IlvAbstractStaticViewContainer
This class provides a skeletal implementation of the IlvViewContainer interface for static view containers. |
class |
IlvDataDocument
Defines documents associated with user data. |
class |
IlvDocumentTemplate
Document templates manage all aspects of the creation and the display of the documents. |
class |
IlvDocumentViewSupport
This is a utility class for implementing the IlvDocumentView interface. |
class |
IlvDOMDocument
Defines documents that are associated with org.w3c.dom.Document
instances. |
class |
IlvFileDocumentTemplate
Defines document templates that create IlvFileDocument instances. |
class |
IlvTextDocument
Defines documents that are associated with javax.swing.text.Document
objects. |
| Methods in ilog.views.appframe.docview with parameters of type ActionHandler | |
|---|---|
void |
IlvAbstractStaticViewContainer.addActionHandler(ActionHandler actionHandler)
Adds the specified actionHandler to the list of action
handlers of the view container. |
void |
IlvDocumentViewSupport.addActionHandler(ActionHandler actionHandler)
Adds the specified actionHandler to the list of action
handlers of the support object. |
void |
IlvAbstractDocument.addActionHandler(ActionHandler actionHandler)
Adds the specified actionHandler to the list of action handlers of
the document. |
boolean |
IlvAbstractStaticViewContainer.removeActionHandler(ActionHandler actionHandler)
Removes the specified actionHandler from the list of action
handlers managed by this view container. |
boolean |
IlvDocumentViewSupport.removeActionHandler(ActionHandler actionHandler)
Removes the specified actionHandler from the list of action
handlers managed by this support object. |
boolean |
IlvAbstractDocument.removeActionHandler(ActionHandler actionHandler)
Removes the specified actionHandler from the list of action
handlers managed by this document. |
| Uses of ActionHandler in ilog.views.appframe.docview.project |
|---|
| Classes in ilog.views.appframe.docview.project that implement ActionHandler | |
|---|---|
class |
IlvDataContainerDocument
Defines documents associated with a data container. |
class |
IlvProjectDocument
Defines data container documents that are associated with IlvProjectDataContainer instances. |
class |
IlvWorkspaceDocument
Defines data container documents that are associated with IlvWorkspaceDataContainer instances. |
| Uses of ActionHandler in ilog.views.appframe.event |
|---|
| Classes in ilog.views.appframe.event that implement ActionHandler | |
|---|---|
class |
IlvActionHandlerArray
Action handler that contains an array of action handlers. |
class |
IlvCheckableActionHandler
Action handler that handles checkable actions. |
class |
IlvComponentVisibilityActionHandler
Defines action handlers associated with the visibility of a component or a document view container. |
class |
IlvListActionHandler
Action handler that handles list actions. |
class |
IlvMessageMapper
Defines action handlers that map action events or message events with the call to a specified method. |
class |
IlvSingleActionHandler
Defines action handlers that handle one action. |
| Methods in ilog.views.appframe.event that return ActionHandler | |
|---|---|
ActionHandler |
IlvActionHandlerArray.getActionHandler(String command)
Retrieves the action handler of this object that is able to process the action with the specified command key. |
| Methods in ilog.views.appframe.event with parameters of type ActionHandler | |
|---|---|
void |
IlvActionHandlerArray.addActionHandler(ActionHandler actionHandler)
Adds the specified actionHandler to the list of action handlers
of this object. |
boolean |
IlvActionHandlerArray.removeActionHandler(ActionHandler actionHandler)
Removes the specified actionHandler from the list of action
handlers of this object. |
| Uses of ActionHandler in ilog.views.appframe.swing |
|---|
| Classes in ilog.views.appframe.swing that implement ActionHandler | |
|---|---|
class |
IlvDefaultStaticViewContainer
The default implementation for Swing static view containers. |
class |
IlvExplorerView
Explorer view for visualizing and editing data container documents. |
class |
IlvPanelView
Implements the IlvDocumentView interface
for a JPanel. |
class |
IlvTextView
Defines a document view associated with the Swing text component. |
class |
IlvTreeView
Defines a document view associated with Swing JTree. |
| Methods in ilog.views.appframe.swing with parameters of type ActionHandler | |
|---|---|
void |
IlvPanelView.addActionHandler(ActionHandler actionHandler)
Adds the specified actionHandler to the list of action handlers of
the view. |
boolean |
IlvPanelView.removeActionHandler(ActionHandler actionHandler)
Removes the specified actionHandler from the list of action
handlers managed by this view. |
| Uses of ActionHandler in ilog.views.appframe.swing.mdi |
|---|
| Classes in ilog.views.appframe.swing.mdi that implement ActionHandler | |
|---|---|
class |
IlvInternalFrame
Implementation of the IlvMDIViewContainer interface for
Swing internal frames. |
class |
IlvMDITab
Defines the tab components that are inserted within an IlvMDITabbedPane. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||