Uses of Interface
com.tensegrity.generic.util.Observer

Packages that use Observer
com.tensegrity.generic.util Core classes for tensegrity-software packages.  
com.tensegrity.graph.layout.controller The controller package contains several concrete implementations of abstract class LayoutController which can be used in many common applications.  
com.tensegrity.gui.document Contains the interfaces for document types and the framework which maintains such documents.  
com.tensegrity.gui.graphdocument This package contains the GraphDocument interface, a Factory for creating such documents as well as a definition for a panel which may hold such documents.  
com.tensegrity.gui.swing.control.slidepanel This package contains our SlidePanel implementation. 
com.tensegrity.gui.swing.dialog.graphtools   
com.tensegrity.gui.swing.document This package contains all of the current document implementations for use in a swing-based environment.  
com.tensegrity.gui.swing.graph The graph package contains the two panels required for the SwingGraphDocument, a NavigatorPanel and several components for the inplace editing supported by the SwingGraphPanel.  
com.tensegrity.gui.swt.document   
com.tensegrity.gui.swt.graph   
com.tensegrity.gui.template   
com.tensegrity.skeleton.commands The command package contains all the predefined commands of the skeleton, like Save, Print, Quit, Zoom, etc. 
com.tensegrity.skeleton.container.swing The swing implementations of all currently available ToolContainer types. 
com.tensegrity.skeleton.container.swt   
com.tensegrity.skeleton.swing The Swing based implementation of the skeleton framework. 
com.tensegrity.skeleton.swt   
com.tensegrity.skeleton.swt.commands   
 

Uses of Observer in com.tensegrity.generic.util
 

Methods in com.tensegrity.generic.util with parameters of type Observer
 void DefaultObservable.addObserver(Observer observer)
           
 void DefaultObservable.deleteObserver(Observer observer)
           
 void Observable.addObserver(Observer observer)
          Adds an observer to the internally managed list of observers of this observable.
 void Observable.deleteObserver(Observer observer)
          Deletes an observer from the internally managed list of observers of this observable.
 

Uses of Observer in com.tensegrity.graph.layout.controller
 

Methods in com.tensegrity.graph.layout.controller with parameters of type Observer
 void LayoutController.addObserver(Observer observer)
          Adds an observer to the internally managed list of observers of this observable.
 void LayoutController.deleteObserver(Observer observer)
          Deletes an observer from the internally managed list of observers of this observable.
 

Uses of Observer in com.tensegrity.gui.document
 

Subinterfaces of Observer in com.tensegrity.gui.document
 interface Document
           A document is basically a window inside the application containing a single view of user data.
 

Classes in com.tensegrity.gui.document that implement Observer
 class AbstractDocument
           Class AbstractDocument implements functionality common to all Document implementations.
 

Methods in com.tensegrity.gui.document with parameters of type Observer
 void MDIDelegate.addObserver(Observer observer)
           
 void MDIDelegate.deleteObserver(Observer observer)
           
 

Uses of Observer in com.tensegrity.gui.graphdocument
 

Subinterfaces of Observer in com.tensegrity.gui.graphdocument
 interface GraphDocument
           Interface GraphDocument represents the document type for a persisted Graph which, together with its views, can be queried from its parent GraphPanel.
 interface GraphPanel
          This class represents the drawing-area for graphs in abstract form.
 

Uses of Observer in com.tensegrity.gui.swing.control.slidepanel
 

Classes in com.tensegrity.gui.swing.control.slidepanel that implement Observer
 class Slide
          This class represents a single slide.
 class SlidePanel
           A SlidePanel is a generic parent container for multiple child container windows.
 

Methods in com.tensegrity.gui.swing.control.slidepanel with parameters of type Observer
 void SlideTitle.addObserver(Observer observer)
          Adds an Observer to the internal observable instance.
 void SlideTitle.deleteObserver(Observer observer)
          Removes an Observer from the internal observable instance.
 void Slide.addObserver(Observer observer)
          Adds the given parameter Observer to this observable's.
 void Slide.deleteObserver(Observer observer)
          Deletes the given Observer from this observable's.
 

Uses of Observer in com.tensegrity.gui.swing.dialog.graphtools
 

Classes in com.tensegrity.gui.swing.dialog.graphtools that implement Observer
 class GraphLayoutDialog
          The graph layout dialog is defined in this class.
 

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

Classes in com.tensegrity.gui.swing.document that implement Observer
 class AttributeTableDocument
          This class is derived from the base document class and represents an attribute document.
 class HyperTextDocument
          This class is derived from the base document class and represents a html-document.
 class LayoutToolDocument
          The LayoutTool document wrapps up the layouttools inside a document.
 class MenuTool
          The MenuTool is a Tool alike class to add a Window Menu and a View-Tools menu to your application.
 class NavigatorDocument
          This class is derived from the base document class and represents a navigator document.
 class ObjectTreeDocument
          ObjectTreeDocument.java
 class RepositoryDocument
          This class is derived from the base document class and represents a repository document.
 class SwingDocument
           This class represents a Swing-based Document.
 class SwingGraphDocument
           This class represents the GraphDocument implementation for Swing-based applications.
 class SwingTemplateDocument
          The SwingTemplateDocument implements the document to be used when creating Templates.
 

Methods in com.tensegrity.gui.swing.document with parameters of type Observer
 void FramedMDIComponent.addObserver(Observer o)
          Adds an obserser to the internally managed list of observers of this observable.
 void FramedMDIComponent.deleteObserver(Observer o)
          Deletes an obserser from the internally managed list of observers of this observable.
 void WindowMDIComponent.addObserver(Observer o)
           
 void WindowMDIComponent.deleteObserver(Observer o)
           
 void PanelMDIComponent.addObserver(Observer o)
           
 void PanelMDIComponent.deleteObserver(Observer o)
           
 void DockMDIComponent.addObserver(Observer o)
           
 void DockMDIComponent.deleteObserver(Observer o)
           
 void TabbedMDIComponent.addObserver(Observer o)
           
 void TabbedMDIComponent.deleteObserver(Observer o)
           
 

Uses of Observer in com.tensegrity.gui.swing.graph
 

Classes in com.tensegrity.gui.swing.graph that implement Observer
 class AbstractLayoutObserver
          The AbstractLayoutObserver is an abstract base class for layout observer implementations.
 class LayoutObserver
          This class manages redrawing for layout animation.
 class NavigatorPanel
           The NavigatorPanel is a JPanel-based Swing component that uses a CompositeNavigator, so that it can be used within the application GUI.
 class SwingGraphPanel
          This class represents the drawing-area swing component for graphs.
 class SwingGraphPanelLayoutObserver
           This class manages redrawing for layout animation.
 

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

Classes in com.tensegrity.gui.swt.document that implement Observer
 class SwtDocument
           This class represents a SWT-based Document.
 class SwtGraphDocument
           This class represents the GraphDocument implementation for SWT-based applications.
 

Methods in com.tensegrity.gui.swt.document with parameters of type Observer
 void SwtTabbedMDIComponent.addObserver(Observer o)
           
 void SwtTabbedMDIComponent.deleteObserver(Observer o)
           
 

Uses of Observer in com.tensegrity.gui.swt.graph
 

Classes in com.tensegrity.gui.swt.graph that implement Observer
 class SwtGraphPanel
           This class represents the drawing-area swt-component for graphs.
 class SwtGraphPanelLayoutObserver
           Instances of SwtGraphPanelLayoutObserver are used in order to manage redrawing for layout animation in the SWT context.
 class SwtNavigator
           Instances of SwtNavigator are responsible for providing the means for displaying a CompositeNavigator in SWT-based applications.
 

Uses of Observer in com.tensegrity.gui.template
 

Subinterfaces of Observer in com.tensegrity.gui.template
 interface TemplateDocument
           Interface TemplateDocument is responsible for creating templates of repository items and new composites.
 

Uses of Observer in com.tensegrity.skeleton.commands
 

Methods in com.tensegrity.skeleton.commands that return Observer
protected  Observer LayoutCommand.buildLayoutObserver()
           
protected abstract  Observer AbstractLayoutCommand.buildLayoutObserver()
           
 

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

Classes in com.tensegrity.skeleton.container.swing that implement Observer
 class SwingNavigatorContainer
           REVIEWJAVADOC (SwingNavigatorContainer.java) This class responsibility description needs a different formulation.
 

Uses of Observer in com.tensegrity.skeleton.container.swt
 

Classes in com.tensegrity.skeleton.container.swt that implement Observer
 class SwtNavigatorContainer
           Class SwtNavigatorContainer represents the default SWT implementation of the NavigatorContainer interface.
 

Uses of Observer in com.tensegrity.skeleton.swing
 

Classes in com.tensegrity.skeleton.swing that implement Observer
 class SkeletonSwingMenuTool
          This subclass of MenuTool is used in the Skeleton framework in order provide Skeleton based applications with a custom ContainerAction.
 class SwingApplicationFrame.NavigatorUpdater
          The NavigatorUpdater is an Observer which updates the Navigator of an ApplicationFrame.
 

Uses of Observer in com.tensegrity.skeleton.swt
 

Classes in com.tensegrity.skeleton.swt that implement Observer
 class SwtApplicationFrame.NavigatorUpdater
          The NavigatorUpdater is an Observer which updates the Navigator of an ApplicationFrame.
 

Uses of Observer in com.tensegrity.skeleton.swt.commands
 

Methods in com.tensegrity.skeleton.swt.commands that return Observer
protected  Observer SwtLayoutCommand.buildLayoutObserver()
           
 



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