Uses of Interface
com.tensegrity.gui.swing.JPopupMenuSourceWithUpdateUI

Packages that use JPopupMenuSourceWithUpdateUI
com.tensegrity.application This package contains the main interfaces and meta classes for the skeleton framework.  
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.swing.repository The repository package contains classes for the creation of a repository control.  
com.tensegrity.gui.swt.graph   
com.tensegrity.gui.template   
com.tensegrity.skeleton.swing The Swing based implementation of the skeleton framework. 
com.tensegrity.skeleton.swt   
 

Uses of JPopupMenuSourceWithUpdateUI in com.tensegrity.application
 

Methods in com.tensegrity.application that return JPopupMenuSourceWithUpdateUI
abstract  JPopupMenuSourceWithUpdateUI ApplicationFrame.getGraphPanelPopupMenuSource()
          Returns a popup menu instance for this application's graph panels.
 

Methods in com.tensegrity.application with parameters of type JPopupMenuSourceWithUpdateUI
abstract  void ApplicationFrame.setGraphPanelPopupMenuSource(JPopupMenuSourceWithUpdateUI graphPanelPopupMenuSource)
          Sets the popup menu instance for this application's graph panels.
 

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

Methods in com.tensegrity.gui.swing.document with parameters of type JPopupMenuSourceWithUpdateUI
 void SwingTemplateDocument.setPopupMenuSource(JPopupMenuSourceWithUpdateUI popup)
           
 

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

Methods in com.tensegrity.gui.swing.graph that return JPopupMenuSourceWithUpdateUI
 JPopupMenuSourceWithUpdateUI SwingGraphPanel.getPopupMenuSource()
          Returns an instance of a JPopupMenuSourceWithUpdateUI or null if this instance of SwingGraphPanel has no context menu.
 

Methods in com.tensegrity.gui.swing.graph with parameters of type JPopupMenuSourceWithUpdateUI
 void SwingGraphPanel.setJPopupMenuSource(JPopupMenuSourceWithUpdateUI popupmenusource)
          Sets the JPopupMenuSourceWithUpdateUI to use for displaying popup menus.
 

Constructors in com.tensegrity.gui.swing.graph with parameters of type JPopupMenuSourceWithUpdateUI
SwingGraphPanel(Application application, GraphDocument graphdocument, JPopupMenuSourceWithUpdateUI popupmenusource)
          Deprecated. Use {@link #SwingGraphPanel(ApplicationFrame, GraphDocument, JPopupMenuSourceWithUpdateUI)
SwingGraphPanel(Application application, GraphDocument graphdocument, JPopupMenuSourceWithUpdateUI popupmenusource, boolean isDoubleBuffered)
          Deprecated. Use SwingGraphPanel.SwingGraphPanel(ApplicationFrame, GraphDocument, JPopupMenuSourceWithUpdateUI, boolean)
SwingGraphPanel(Application application, GraphDocument graphdocument, JPopupMenuSourceWithUpdateUI popupmenusource, DragContext vgoDragSource)
          Deprecated. Use SwingGraphPanel.SwingGraphPanel(ApplicationFrame, GraphDocument, JPopupMenuSourceWithUpdateUI, DragContext)
SwingGraphPanel(Application application, GraphDocument graphdocument, JPopupMenuSourceWithUpdateUI popupmenusource, DragContext vgoDragSource, boolean isDoubleBuffered)
          Generic constructor for the graphpanel.
SwingGraphPanel(ApplicationFrame applicationFrame, GraphDocument graphdocument, JPopupMenuSourceWithUpdateUI popupmenusource)
          Creates a new SwingGraphPanel with double buffering enabled.
SwingGraphPanel(ApplicationFrame applicationFrame, GraphDocument graphdocument, JPopupMenuSourceWithUpdateUI popupmenusource, boolean isDoubleBuffered)
          Generic constructor for the graphpanel.
SwingGraphPanel(ApplicationFrame applicationFrame, GraphDocument graphdocument, JPopupMenuSourceWithUpdateUI popupmenusource, DragContext vgoDragSource)
          Generic constructor for the graphpanel.
SwingGraphPanel(GraphDocument graphdocument, JPopupMenuSourceWithUpdateUI popupmenusource, DragContext vgoDragSource)
          Generic constructor for the graphpanel.
SwingGraphPanel(ApplicationFrame applicationFrame, GraphDocument graphdocument, JPopupMenuSourceWithUpdateUI popupmenusource, DragContext vgoDragSource, boolean isDoubleBuffered)
          Generic constructor for the graphpanel.
 

Uses of JPopupMenuSourceWithUpdateUI in com.tensegrity.gui.swing.repository
 

Methods in com.tensegrity.gui.swing.repository with parameters of type JPopupMenuSourceWithUpdateUI
 void RepositoryItemPanel.setJPopupMenuSource(JPopupMenuSourceWithUpdateUI popupmenusource)
          Sets the JPopupMenuSourceWithUpdateUI to use for displaying popup menus.
 

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

Methods in com.tensegrity.gui.swt.graph that return JPopupMenuSourceWithUpdateUI
 JPopupMenuSourceWithUpdateUI SwtGraphPanel.getPopupMenuSource()
          Returns the local JPopupMenuSourceWithUpdateUI instance.
 

Methods in com.tensegrity.gui.swt.graph with parameters of type JPopupMenuSourceWithUpdateUI
 void SwtGraphPanel.setPopupMenuSource(JPopupMenuSourceWithUpdateUI popupmenusource)
          Sets the JPopupMenuSourceWithUpdateUI to use for displaying popup menus.
 

Constructors in com.tensegrity.gui.swt.graph with parameters of type JPopupMenuSourceWithUpdateUI
SwtGraphPanel(GraphApplication graphapplication, GraphDocument graphdocument, org.eclipse.swt.widgets.Composite parentContainer, DragContext dragContext, JPopupMenuSourceWithUpdateUI popupmenusource)
           Generic constructor for the SwtGraphPanel.
SwtGraphPanel(ApplicationFrame applicationFrame, GraphDocument graphdocument, org.eclipse.swt.widgets.Composite parentContainer, DragContext dragContext, JPopupMenuSourceWithUpdateUI popupmenusource)
           Generic constructor for the SwtGraphPanel.
SwtGraphPanel(GraphApplication graphapplication, org.eclipse.swt.widgets.Composite parentContainer, DragContext dragContext, JPopupMenuSourceWithUpdateUI popupmenusource)
           Generic constructor for the SwtGraphPanel.
SwtGraphPanel(ApplicationFrame applicationFrame, org.eclipse.swt.widgets.Composite parentContainer, DragContext dragContext, JPopupMenuSourceWithUpdateUI popupmenusource)
           Generic constructor for the SwtGraphPanel.
 

Uses of JPopupMenuSourceWithUpdateUI in com.tensegrity.gui.template
 

Methods in com.tensegrity.gui.template with parameters of type JPopupMenuSourceWithUpdateUI
 void TemplateDocument.setPopupMenuSource(JPopupMenuSourceWithUpdateUI popup)
          Allows users of this class to set an SwingPopupMenu for this document instance.
 

Uses of JPopupMenuSourceWithUpdateUI in com.tensegrity.skeleton.swing
 

Classes in com.tensegrity.skeleton.swing that implement JPopupMenuSourceWithUpdateUI
 class SwingGraphPanelPopupMenuSource
          This class provides the popup menus for the drawing areas.
 

Methods in com.tensegrity.skeleton.swing that return JPopupMenuSourceWithUpdateUI
 JPopupMenuSourceWithUpdateUI SwingApplicationFrame.getGraphPanelPopupMenuSource()
           
 

Methods in com.tensegrity.skeleton.swing with parameters of type JPopupMenuSourceWithUpdateUI
 void SwingApplicationFrame.setGraphPanelPopupMenuSource(JPopupMenuSourceWithUpdateUI graphPanelPopupMenuSource)
          Sets the JPopupMenuSourceWithUpdateUI for this application.
 

Uses of JPopupMenuSourceWithUpdateUI in com.tensegrity.skeleton.swt
 

Classes in com.tensegrity.skeleton.swt that implement JPopupMenuSourceWithUpdateUI
 class SwtGraphPanelPopupMenuSource
          This class provides the popup menus for the drawing areas.
 

Methods in com.tensegrity.skeleton.swt that return JPopupMenuSourceWithUpdateUI
 JPopupMenuSourceWithUpdateUI SwtApplicationFrame.getGraphPanelPopupMenuSource()
           Returns the local JPopupMenuSourceWithUpdateUI
 

Methods in com.tensegrity.skeleton.swt with parameters of type JPopupMenuSourceWithUpdateUI
 void SwtApplicationFrame.setGraphPanelPopupMenuSource(JPopupMenuSourceWithUpdateUI graphPanelPopupMenuSource)
           Sets the local JPopupMenuSourceWithUpdateUI
 



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