Uses of Interface
com.tensegrity.gui.document.event.DocumentListener

Packages that use DocumentListener
com.tensegrity.application This package contains the main interfaces and meta classes for the skeleton framework.  
com.tensegrity.gui.container   
com.tensegrity.gui.document Contains the interfaces for document types and the framework which maintains such documents.  
com.tensegrity.gui.document.event This package contains all implementation and interface related to all sorts of Document related events such as DocumentEvent, -Multiplexer, -Listener and -VetoExceptions. 
com.tensegrity.gui.swing.control This package contains specific controls used within dialogs, such as the IntegerTextField, ProgressBar and SpinButton.  
com.tensegrity.gui.swing.control.tree This package contains the implementation for an Object Tree for VisualGraph objects. 
com.tensegrity.gui.swing.document This package contains all of the current document implementations for use in a swing-based environment.  
com.tensegrity.gui.swt.control   
com.tensegrity.gui.swt.document   
com.tensegrity.skeleton.container.swing The swing implementations of all currently available ToolContainer types. 
com.tensegrity.skeleton.swing The Swing based implementation of the skeleton framework. 
com.tensegrity.skeleton.swt   
 

Uses of DocumentListener in com.tensegrity.application
 

Classes in com.tensegrity.application that implement DocumentListener
 class ApplicationFrame
           Class ApplicationFrame represents an abstract implementation representing a GUI of an Application.
 

Uses of DocumentListener in com.tensegrity.gui.container
 

Methods in com.tensegrity.gui.container that return DocumentListener
 DocumentListener OutlinerContainer.getDocumentListenerComponent()
          Returns the component of the ObjectTreeContainer which is responsible to listen to document events.
 

Uses of DocumentListener in com.tensegrity.gui.document
 

Methods in com.tensegrity.gui.document with parameters of type DocumentListener
 void MDIDelegate.setDocumentListener(DocumentListener documentlistener)
           
 void MDIDelegate.addDocumentListener(DocumentListener documentlistener)
           
 void MDIDelegate.removeDocumentListener(DocumentListener documentlistener)
           
 void MDIComponent.setDocumentListener(DocumentListener documentlistener)
          Sets a single document listener.
 void MDIComponent.addDocumentListener(DocumentListener documentlistener)
          Adds a document listener.
 void MDIComponent.removeDocumentListener(DocumentListener documentlistener)
          Removes a document listener.
 

Uses of DocumentListener in com.tensegrity.gui.document.event
 

Classes in com.tensegrity.gui.document.event that implement DocumentListener
 class DocumentAdapter
          A convenience adapter-class for document-listeners.
 class DocumentEventMultiplexer
          Multiplexer for mdicomponent/document events.
 

Methods in com.tensegrity.gui.document.event that return DocumentListener
static DocumentListener DocumentEventMultiplexer.multiplex(DocumentListener a, DocumentListener b)
          Multiplexes two DocumentListener instances and returns the multiplexed DocumentListener.
static DocumentListener DocumentEventMultiplexer.unmultiplex(DocumentListener a, DocumentListener b)
          Unmultiplexes two DocumentListener instances and returns the unmultiplexed DocumentListener.
 

Methods in com.tensegrity.gui.document.event with parameters of type DocumentListener
static DocumentListener DocumentEventMultiplexer.multiplex(DocumentListener a, DocumentListener b)
          Multiplexes two DocumentListener instances and returns the multiplexed DocumentListener.
static DocumentListener DocumentEventMultiplexer.unmultiplex(DocumentListener a, DocumentListener b)
          Unmultiplexes two DocumentListener instances and returns the unmultiplexed DocumentListener.
 

Uses of DocumentListener in com.tensegrity.gui.swing.control
 

Classes in com.tensegrity.gui.swing.control that implement DocumentListener
 class SwingToolBar
          This SwingToolBar keeps care of its components when it comes to switching languages.
 class ZoomComboBox
          The ComboBox implementation for Zoom values.
 

Uses of DocumentListener in com.tensegrity.gui.swing.control.tree
 

Classes in com.tensegrity.gui.swing.control.tree that implement DocumentListener
 class TreeOutliner
           The TreeOutliner outlines the content of Documents in a tree representation.
 

Uses of DocumentListener in com.tensegrity.gui.swing.document
 

Methods in com.tensegrity.gui.swing.document that return DocumentListener
 DocumentListener FramedMDIComponent.getDocumentListener()
          Returns the active DocumentListener.
 DocumentListener WindowMDIComponent.getDocumentListener()
           
 DocumentListener PanelMDIComponent.getDocumentListener()
           
 DocumentListener TabbedMDIComponent.getDocumentListener()
          Returns the document listener that is registered.
 

Methods in com.tensegrity.gui.swing.document with parameters of type DocumentListener
static MDIComponent MDIToolkit.setFramedMDIStyle(java.util.List documents, java.awt.Container panel, Observable observable, MenuTool windowmenu, javax.swing.JToolBar toolbar, DocumentListener documentlistener, UIManager uimanager, DocumentDropContext opener)
          This method takes a list of mdi-documents and builds a new Framed MDI styled container and adds all the documents that mdi-container.
static MDIComponent MDIToolkit.setTabbedMDIStyle(java.util.List documents, java.awt.Container panel, Observable observable, MenuTool windowmenu, javax.swing.JToolBar toolbar, DocumentListener documentlistener, Command closeDocumentCommand, UIManager uimanager, DocumentDropContext opener)
          This method takes a list of mdi-documents and builds a new Framed MDI styled container and adds all the documents that mdi-container.
 void FramedMDIComponent.setDocumentListener(DocumentListener documentlistener)
           
 void FramedMDIComponent.addDocumentListener(DocumentListener listener)
           
 void FramedMDIComponent.removeDocumentListener(DocumentListener listener)
           
 void WindowMDIComponent.setDocumentListener(DocumentListener documentlistener)
           
 void WindowMDIComponent.addDocumentListener(DocumentListener listener)
           
 void WindowMDIComponent.removeDocumentListener(DocumentListener listener)
           
 void PanelMDIComponent.setDocumentListener(DocumentListener documentlistener)
           
 void PanelMDIComponent.addDocumentListener(DocumentListener listener)
           
 void PanelMDIComponent.removeDocumentListener(DocumentListener listener)
           
 void DockMDIComponent.addDocumentListener(DocumentListener listener)
           
 void DockMDIComponent.removeDocumentListener(DocumentListener listener)
           
 void DockMDIComponent.setDocumentListener(DocumentListener documentlistener)
           
 void TabbedMDIComponent.setDocumentListener(DocumentListener documentlistener)
           
 void TabbedMDIComponent.addDocumentListener(DocumentListener listener)
           
 void TabbedMDIComponent.removeDocumentListener(DocumentListener listener)
           
 

Uses of DocumentListener in com.tensegrity.gui.swt.control
 

Classes in com.tensegrity.gui.swt.control that implement DocumentListener
 class SwtToolBar
           This is the SWT implementation of the ToolBar interface.
 

Uses of DocumentListener in com.tensegrity.gui.swt.document
 

Methods in com.tensegrity.gui.swt.document with parameters of type DocumentListener
 void SwtTabbedMDIComponent.addDocumentListener(DocumentListener listener)
           
 void SwtTabbedMDIComponent.removeDocumentListener(DocumentListener listener)
           
 void SwtTabbedMDIComponent.setDocumentListener(DocumentListener documentlistener)
           
 

Uses of DocumentListener in com.tensegrity.skeleton.container.swing
 

Methods in com.tensegrity.skeleton.container.swing that return DocumentListener
 DocumentListener SwingOutlinerContainer.getDocumentListenerComponent()
           
 

Uses of DocumentListener in com.tensegrity.skeleton.swing
 

Classes in com.tensegrity.skeleton.swing that implement DocumentListener
 class SwingApplicationFrame
          The Swing based ApplicationFrame implementation.
 

Uses of DocumentListener in com.tensegrity.skeleton.swt
 

Classes in com.tensegrity.skeleton.swt that implement DocumentListener
 class SwtApplicationFrame
           This is the SWT-based implementation of ApplicationFrame.
 



Copyright © 2005 Tensegrity Software GmbH. All Rights Reserved. Date of creation: 09.06.2006.