Package | Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
IlvDocument |
IlvApplication.findDocument(String pathname)
Finds an open document with the specified
pathname . |
IlvDocument |
IlvApplication.getActiveDocument(boolean mdiDocument)
Returns the document currently active in the application.
|
IlvDocument[] |
IlvApplication.getOpenDocuments()
Returns all the open documents in the application.
|
IlvDocument[] |
IlvApplication.getOpenDocuments(IlvDocumentTemplate documentTemplate)
Returns all the documents open in the application for the specified
documentTemplate . |
IlvDocument |
IlvApplication.newDocument()
Creates a new document.
|
IlvDocument |
IlvApplication.newDocument(IlvDocumentTemplate docTemplate,
boolean createViews,
Object userData)
Creates a new document for the specified document template.
|
IlvDocument |
IlvApplication.newDocument(Object userData,
boolean createViews)
Creates a new document that embeds the specified
userData . |
IlvDocument |
IlvApplication.newDocumentOnLastTemplate()
Creates a new document for the same document template as the one
selected in the New Document dialog box the last time it was
launched.
|
IlvDocument |
IlvApplication.openDocument()
Prompts for a document file name and opens the corresponding document.
|
IlvDocument |
IlvApplication.openDocument(IlvFileDocumentTemplate docTemplate)
Opens a document for the specified document template.
|
IlvDocument |
IlvApplication.openDocumentFile(String pathname,
boolean createViews,
boolean addToMRU)
Opens a document with the specified
pathname . |
IlvDocument |
IlvApplication.openRecentOpenedFile(int index)
Opens or activates the document file corresponding to the pathname stored
at specified
index in the list of Most Recently Used files
managed by the application. |
Modifier and Type | Method and Description |
---|---|
void |
IlvApplication.attachDocument(IlvDocument parentDocument,
IlvDocument document)
Attaches the specified
document to the specified
parentDocument . |
boolean |
IlvApplication.closeDocument(IlvDocument document,
boolean force)
Closes the specified document in the application.
|
void |
IlvApplication.detachDocument(IlvDocument parentDocument,
IlvDocument document)
Detaches the specified
document from the specified
parentDocument . |
boolean |
IlvApplication.saveDocument(IlvDocument document)
Saves the specified
document . |
boolean |
IlvApplication.saveDocumentModifications(IlvDocument document)
Saves the modifications of the specified document.
|
void |
IlvApplication.setActiveDocument(IlvDocument document,
IlvDocumentView view,
boolean mdiDocument)
Sets the active document of the application.
|
Modifier and Type | Interface and Description |
---|---|
interface |
IlvFileDocument
Defines documents that are initialized from files.
|
interface |
IlvStreamDocument
Defines documents that are read and write their data from streams.
|
Modifier and Type | Class and Description |
---|---|
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 |
IlvDataDocument
Defines documents associated with user data.
|
class |
IlvDOMDocument
Defines documents that are associated with
org.w3c.dom.Document
instances. |
class |
IlvTextDocument
Defines documents that are associated with
javax.swing.text.Document
objects. |
Modifier and Type | Method and Description |
---|---|
IlvDocument |
IlvDocumentTemplate.createDocument()
Factory method for creating documents associated with this document template.
|
IlvDocument |
IlvDocumentViewSupport.getDocument()
Returns the document associated with the view.
|
IlvDocument |
IlvDocumentView.getDocument()
Returns the document associated with the view.
|
Modifier and Type | Method and Description |
---|---|
void |
IlvDocumentTemplate.activateDocumentView(IlvDocument document)
Activates the specified
document by activating the view
containers of the document. |
void |
IlvAbstractDocument.attachDocument(IlvDocument document,
boolean attach)
Attaches or detaches the specified
document from this
document, depending on the value of the attach parameter. |
boolean |
IlvDocumentTemplate.closeDocument(IlvDocument document,
boolean force)
Tries to close the specified document.
|
boolean |
IlvDocumentTemplate.closeDocumentView(IlvDocument document,
String viewConfiguration)
Closes the document view associated with the specified
document and created for the specified
viewConfiguration . |
void |
IlvDocumentTemplate.closeDocumentViews(IlvDocument document)
Closes all the views of the specified
document that are
not static. |
boolean |
IlvDocumentTemplate.createDocumentViews(IlvMainWindow mainWindow,
IlvDocument document)
Creates the view containers of a document.
|
IlvMDIViewContainer |
IlvMDIContainerTemplate.createViewContainer(IlvDocument document)
Creates a new view container for the specified document.
|
void |
IlvDocumentTemplate.documentActivated(IlvDocument document,
boolean activated)
Invoked after a view of the specified
document has been
activated or deactivated, depending on the value of the specified
activated parameter. |
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 . |
IlvViewContainer[] |
IlvDocumentTemplate.getDocumentContainers(IlvDocument document)
Returns all the view containers that contain views of the specified
document . |
void |
IlvDocumentTemplate.initializeDocumentViews(IlvDocument document)
Initializes all the views of the specified
document . |
void |
IlvDocumentViewSupport.initializeView(IlvDocument document)
Initializes the document view with the specified document.
|
void |
IlvDocumentView.initializeView(IlvDocument document)
Initializes the document view with the specified document.
|
IlvMDIViewContainer |
IlvDocumentTemplate.newMDIViewContainer(IlvDocument document,
IlvMDIContainerTemplate containerTemplate,
String configurationName)
Creates a new MDI view container for the specified document and MDI
container template.
|
IlvViewContainer |
IlvDocumentViewConfiguration.newViewContainer(IlvDocument document,
boolean activateContainer)
Creates a new view container according to the parameters of this view
configuration.
|
IlvViewContainer |
IlvDocumentTemplate.newViewContainer(IlvDocument document,
IlvContainerTemplate containerTemplate,
String configurationName)
Creates a new view container for the specified document and container
template.
|
IlvViewContainer |
IlvDocumentTemplate.newViewContainer(IlvDocument document,
String configurationName,
boolean activate)
Creates a new view container for the specified
document
and the specified configuration. |
boolean |
IlvDocumentTemplate.saveDocumentModifications(IlvDocument document)
Saves the specified
document if it was modified. |
void |
IlvDocumentViewSupport.setDocument(IlvDocument document)
Sets the document associated with the view.
|
void |
IlvDocumentTemplate.updateViewContainerTitles(IlvDocument document)
Updates the title of all the view containers containing document views
of the specified
document . |
Modifier and Type | Class and Description |
---|---|
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. |
Modifier and Type | Method and Description |
---|---|
protected IlvDocument |
IlvProjectDocument.createDocument(Object node)
Factory method for creating a document to associate with the specified
data container
node . |
protected IlvDocument |
IlvDataContainerDocument.createDocument(Object node)
Factory method for creating a document to associate with the specified
data container
node . |
IlvDocument |
IlvDataContainerDocument.getOpenDocument(Object node)
Retrieves a document opened for the specified
node . |
IlvDocument |
IlvDataContainerDocument.openDocument(Object node)
Opens a document associated with the specified data container
node . |
Modifier and Type | Method and Description |
---|---|
IlvDocument |
ApplicationEvent.getDocument()
Returns the document originator of the event;
null if this event was not originated by a document. |
Modifier and Type | Method and Description |
---|---|
void |
ApplicationEvent.setDocument(IlvDocument document)
Sets the document that originated the event.
|
Constructor and Description |
---|
ApplicationEvent(int id,
IlvDocument document)
Constructs an
ApplicationEvent with the specified
id and document source. |
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 . |
Modifier and Type | Method and Description |
---|---|
IlvDocument |
IlvPanelView.getDocument()
Returns the document associated with the view.
|
Modifier and Type | Method and Description |
---|---|
void |
IlvTreeView.initializeView(IlvDocument document)
Initializes the tree view with the specified document.
|
void |
IlvTextView.initializeView(IlvDocument document)
Initializes the text view with the specified document.
|
void |
IlvPanelView.initializeView(IlvDocument document)
Initializes the panel view with the specified document.
|
void |
IlvExplorerView.initializeView(IlvDocument document)
Initializes the tree view with the specified document.
|
void |
IlvPanelView.setDocument(IlvDocument document)
Sets the document associated with the view.
|
Modifier and Type | Method and Description |
---|---|
IlvDocument |
IlvMDITab.getDocument()
Returns the document associated with this view container.
|
IlvDocument |
IlvInternalFrame.getDocument()
Returns the document associated with this view container.
|
Modifier and Type | Method and Description |
---|---|
protected IlvMDITab |
IlvMDITabbedPane.createTab(IlvDocument document)
Factory method for creating a tab for the specified document.
|
IlvMDIViewContainer |
IlvMDITabbedPane.createViewContainer(IlvDocument document)
Creates a new MDI tab for the specified document.
|
IlvMDIViewContainer |
IlvMDIDockingArea.createViewContainer(IlvDocument document)
Creates a new MDI tab for the specified document.
|
IlvMDIViewContainer |
IlvDesktopPane.createViewContainer(IlvDocument document)
Creates a new internal frame for the specified document.
|
void |
IlvMDITab.setDocument(IlvDocument document)
Sets the document associated with the view.
|
void |
IlvInternalFrame.setDocument(IlvDocument document)
Sets the document associated with the view.
|
© Copyright Rogue Wave Software, Inc. 1997, 2018. All Rights Reserved.