Uses of Interface
ilog.views.appframe.docview.IlvDocumentView

Packages that use IlvDocumentView
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.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.docking Provides classes for dealing with dockable panes. 
ilog.views.appframe.swing.mdi Provides interfaces and classes for managing MDI Swing main windows. 
 

Uses of IlvDocumentView in ilog.views.appframe
 

Methods in ilog.views.appframe that return IlvDocumentView
 IlvDocumentView IlvApplication.getActiveView(boolean mdiDocument)
          Returns the document view currently active in the application.
 

Methods in ilog.views.appframe with parameters of type IlvDocumentView
 void IlvApplication.setActiveDocument(IlvDocument document, IlvDocumentView view, boolean mdiDocument)
          Sets the active document of the application.
 void IlvApplication.setActiveView(IlvDocumentView view, boolean mdiDocument)
          Sets the active document view of this application.
 

Uses of IlvDocumentView in ilog.views.appframe.docview
 

Classes in ilog.views.appframe.docview that implement IlvDocumentView
 class IlvDocumentViewSupport
          This is a utility class for implementing the IlvDocumentView interface.
 

Methods in ilog.views.appframe.docview that return IlvDocumentView
protected  IlvDocumentView IlvDocumentViewConfiguration.createView(IlvSettingsElement viewTemplateElement, int viewIndex, IlvViewContainer container)
          Instantiates a view according to the settings specification provided with the viewTemplateElement.
 IlvDocumentView IlvDocumentTemplate.documentViewExists(IlvDocument document, String viewConfiguration)
          Determines whether a document view associated with the specified document has been created for the specified viewConfiguration.
 IlvDocumentView IlvDocumentTemplate.ensureDocumentViewExists(IlvDocument document, String viewConfiguration, boolean activate)
          Ensures that a document view is created for the specified document and viewConfiguration.
protected abstract  IlvDocumentView[] IlvAbstractStaticViewContainer.findViews()
          Invoked by the IlvAbstractStaticViewContainer.getViews() method to retrieve the document views contained by this view container.
 IlvDocumentView IlvAbstractDocument.getActiveView()
          Returns the view currently active for the document, namely the last view of the document that became active to the application.
 IlvDocumentView IlvDocument.getView(int index)
          Returns the view of the document at the specified position in the list of document views.
 IlvDocumentView IlvAbstractDocument.getView(int index)
          Returns the view of the document at the specified position in the list of document views.
 IlvDocumentView[] IlvAbstractStaticViewContainer.getViews()
          Returns the document views of this container that are provided with the IlvAbstractStaticViewContainer.findViews() method.
 IlvDocumentView[] IlvViewContainer.getViews()
          Returns the document views of this container.
 IlvDocumentView[] IlvAbstractDocument.getViews()
          Returns all the document views associated with the document.
 

Methods in ilog.views.appframe.docview with parameters of type IlvDocumentView
 void IlvDocumentTemplate.activateDocumentView(IlvDocumentView view)
          Activates the specified view.
 void IlvDocument.addView(IlvDocumentView view)
          Adds the specified IlvDocumentView object to the list of views of the document.
 void IlvAbstractDocument.addView(IlvDocumentView view)
          Adds the specified instance of IlvDocumentView to the list of views of the document.
 boolean IlvMDIViewContainer.addViews(IlvDocumentView[] views)
          Adds the specified views to the container.
protected  void IlvAbstractDocument.notifyViews(String name, IlvDocumentView except, Object[] params)
          Notifies the views associated with this document of an event.
 void IlvMainWindow.registerStaticView(String name, IlvDocumentView view)
          Registers the specified document view as a static view within the main window.
 void IlvAbstractMainWindow.registerStaticView(String name, IlvDocumentView view)
          Registers the specified document view as a static view within the main window.
 boolean IlvDocument.removeView(IlvDocumentView view)
          Removes the specified view from the list of views of the document.
 boolean IlvAbstractDocument.removeView(IlvDocumentView view)
          Removes the specified view from the list of views of the document.
 void IlvMainWindow.unregisterStaticView(IlvDocumentView view)
          Unregisters the specified document view from the main window.
 void IlvAbstractMainWindow.unregisterStaticView(IlvDocumentView view)
          Unregisters the specified document view from the main window.
 

Constructors in ilog.views.appframe.docview with parameters of type IlvDocumentView
IlvAbstractStaticViewContainer(IlvDocumentView view)
          Constructs a new IlvAbstractStaticViewContainer instance that contains the specified document view.
 

Uses of IlvDocumentView in ilog.views.appframe.event
 

Methods in ilog.views.appframe.event that return IlvDocumentView
 IlvDocumentView ApplicationEvent.getView()
          Returns the document view that originated the event; null if this event was not originated by a document view.
 

Methods in ilog.views.appframe.event with parameters of type IlvDocumentView
 void ApplicationEvent.setView(IlvDocumentView view)
          Sets the active view of the document.
 

Constructors in ilog.views.appframe.event with parameters of type IlvDocumentView
ApplicationEvent(int id, IlvDocument document, IlvDocumentView view, IlvDocumentTemplate documentTemplate)
          Constructs an ApplicationEvent with the specified id, document, document view, and documentTemplate.
ApplicationEvent(int id, IlvDocument document, IlvDocumentView view, IlvViewContainer container, IlvDocumentTemplate documentTemplate)
          Constructs an ApplicationEvent with the specified id, document, document view, view container, and documentTemplate.
ApplicationEvent(int id, IlvDocumentView view)
          Constructs an ApplicationEvent with the specified id and document view.
 

Uses of IlvDocumentView in ilog.views.appframe.swing
 

Classes in ilog.views.appframe.swing that implement IlvDocumentView
 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 that return IlvDocumentView
protected  IlvDocumentView[] IlvDefaultStaticViewContainer.findViews()
          Invoked by the IlvAbstractStaticViewContainer.getViews() method to retrieve the document views contained by this view container.
 

Methods in ilog.views.appframe.swing with parameters of type IlvDocumentView
static boolean IlvSwingMainWindow.AddViews(IlvViewContainer container, Container clientContainer, IlvDocumentView[] views)
          Default mechanism for adding views to a container.
 

Constructors in ilog.views.appframe.swing with parameters of type IlvDocumentView
IlvDefaultStaticViewContainer(Container container, IlvDocumentView view)
          Constructs a new IlvDefaultStaticViewContainer associated with the specified component and that contains the specified view.
 

Uses of IlvDocumentView in ilog.views.appframe.swing.docking
 

Methods in ilog.views.appframe.swing.docking that return IlvDocumentView
 IlvDocumentView IlvDockingArea.getDockableView(String name)
          Returns the document view contained by the dockable with the specified name.
 

Uses of IlvDocumentView in ilog.views.appframe.swing.mdi
 

Methods in ilog.views.appframe.swing.mdi that return IlvDocumentView
 IlvDocumentView IlvMDITab.getActiveView()
          Returns the active view of this MDI tab.
 IlvDocumentView[] IlvMDITab.getViews()
          Returns the document views of this container.
 IlvDocumentView[] IlvInternalFrame.getViews()
          Returns the document views of this container.
 

Methods in ilog.views.appframe.swing.mdi with parameters of type IlvDocumentView
 boolean IlvMDITab.addViews(IlvDocumentView[] views)
          Adds the specified views to the container.
 boolean IlvInternalFrame.addViews(IlvDocumentView[] views)
          Adds the specified views to the container.
 void IlvMDIApplet.registerStaticView(String name, IlvDocumentView view)
          Registers the specified document view as a static view within the applet.
 void IlvMDIMainFrame.registerStaticView(String name, IlvDocumentView view)
          Registers the specified document view as a static view within the main window.
 void IlvMDIApplet.unregisterStaticView(IlvDocumentView view)
          Unregisters the specified document view from the main window.
 void IlvMDIMainFrame.unregisterStaticView(IlvDocumentView view)
          Unregisters the specified document view from the main window.
 



Copyright © 1996-2007 ILOG S.A. All rights reserved.   Documentation homepage.   . All Rights Reserved.