Uses of Interface
com.tensegrity.generic.attribute.AttributableOnSet

Packages that use AttributableOnSet
com.tensegrity.composite The Tensgrity Graph Framework supports complex visual representations of nodes and edges.  
com.tensegrity.generic.attribute Contains interfaces that define the attribute framework and its associated exceptions. 
com.tensegrity.generic.attribute.event Provides interfaces and classes for dealing with different types of events fired and exceptions thrown by the attribute framework. 
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.graph.model Contains the graph model interface.  
com.tensegrity.graph.view Contains the graph view interface.  
com.tensegrity.graphics Contains basic classes and interfaces of the Tensegrity graphics framework.  
com.tensegrity.graphics.primitive2D Contains classes that define graphical primitives in 2D space.  
com.tensegrity.gui.component The component package contains the basic abstractions for components used within a Graph application, such as GraphApplication, StatusBar, AttributeTable and ObjectTreePanel.  
com.tensegrity.gui.container   
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.attributeeditor   
com.tensegrity.gui.swing.control.attributetable This package contains the AttributeTable implementation. 
com.tensegrity.gui.swing.control.attributetree   
com.tensegrity.gui.swing.dialog This package contains several Dialog implementations, such as a ColorChooser for the three Format types (Paint, Stroke, Font) of the Graphics API.  
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.attributetree   
com.tensegrity.gui.swt.dialog   
com.tensegrity.gui.template   
com.tensegrity.skeleton.container.swing The swing implementations of all currently available ToolContainer types. 
com.tensegrity.skeleton.container.swt   
 

Uses of AttributableOnSet in com.tensegrity.composite
 

Subinterfaces of AttributableOnSet in com.tensegrity.composite
 interface BaseComposite
           The BaseComposite interface is an aggregated interface that combines multiple roles and responsibilities.
 interface Composite
           A Composite is a specialization of the BaseComposite interface.
 interface CompositeControl
           CompositeControl identifies special composites and defines the methods that a composite has to implement to act like a control in the graph.
 interface CompositeGroup
           A CompositeGroup is a specialization of the Composite interface.
 interface CompositeLabel
           A CompositeLabel is a multi-line area that displays text.
 interface CompositeLine
           A CompositeLine is a specialization of the BaseComposite interface.
 interface CompositeSwimLane
           Implementations of this interface can be used to lay out Composites on a lane.
 interface CompositeSwimLanePool
           A CompositeSwimlanePool is a composition of CompositeSwimLanes.
 interface CompositeTable
           This interface represents the definition of a CompositeGroup that behaves like a 2-dimensional table, complete with rows and columns.
 interface CompositeViewGrid
          A CompositeViewGrid builds up a set of lines intersecting at a right angle.
 interface CompositeViewMeasurementObject
          Specifies the common methods of the CompositeViewRuler and the CompositeViewGrid.
 interface CompositeViewRuler
          A ruler can be used for measurements within a CompositeView.
 

Uses of AttributableOnSet in com.tensegrity.generic.attribute
 

Classes in com.tensegrity.generic.attribute that implement AttributableOnSet
 class AttributableOnSetCollection
          AttributableOnSet implementation which itself contains some AttributableOnSets.
 class GenericAttributableOnSet
           GenericAttributableOnSet is a generic AttributableOnSet implementation that just wraps an AttributeSet in a table or tree structure.
 

Methods in com.tensegrity.generic.attribute that return AttributableOnSet
 AttributableOnSet AttributableOnSetCollection.get(int i)
          Retrieves the AttributableOnSet at the given index.
 

Methods in com.tensegrity.generic.attribute with parameters of type AttributableOnSet
 void AttributableOnSetCollectionFeedback.addAttributableOnSet(AttributableOnSet aos)
          This method gets called before an AttributableOnSet instance will get added to the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated to.
 void AttributableOnSetCollectionFeedback.addedAttributableOnSet(AttributableOnSet aos)
          This method gets called after an AttributableOnSet instance has been added to the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated to.
 void AttributableOnSetCollectionFeedback.removeAttributableOnSet(AttributableOnSet aos)
          This method gets called before an AttributableOnSet instance will get removed from the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated to.
 void AttributableOnSetCollectionFeedback.removedAttributableOnSet(AttributableOnSet aos)
          This method gets called after an AttributableOnSet instance has been removed from the AttributableOnSetCollection the AttributableOnSetCollectionFeedback is associated to.
 void AttributableOnSetCollectionFeedback.beforeSetAttributesTree(AttributableOnSet attributable, AttributeSet attributes)
          This method gets called before the attribute tree of a certain AttributableOnSet instance will get set.
 void AttributableOnSetCollectionFeedback.afterSetAttributesTree(AttributableOnSet attributable, AttributeSet attributes)
          This method gets called after the attribute tree of a certain AttributableOnSet instance have been set.
 void AttributableOnSetCollection.addAttributableOnSet(AttributableOnSet aos)
          Add an AttributableOnSet to the collection
 void AttributableOnSetCollection.removeAttributableOnSet(AttributableOnSet aos)
          Removes an AttributableOnSet from the collection
static java.lang.String AttributableOnSetCollection.getTypeName(AttributableOnSet onset)
          Returns the type name of the given AttributableOnSet.
 void AttributableOnSetCollection.setAttributesTree(AttributableOnSet attributable, AttributeSet attributes)
          Sets the attributes to a specific attributable.
 

Uses of AttributableOnSet in com.tensegrity.generic.attribute.event
 

Methods in com.tensegrity.generic.attribute.event that return AttributableOnSet
 AttributableOnSet AbstractAttributableOnSetEvent.getAttributableOnSet()
           
 AttributableOnSet AttributableOnSetRootEvent.getAttributableOnSet()
          Returns the AttributableOnSet-object that originated the event.
 

Constructors in com.tensegrity.generic.attribute.event with parameters of type AttributableOnSet
AbstractAttributableOnSetEvent(AttributableOnSet attributableset, int eventid)
          Constructor specifying the AttributableOnSet and an event id.
AttributableOnSetEvent(int eventid, AttributableOnSet attributableOnSet, AttributeSet attributeschanged_tablelike, AttributeSet attributeschanged_treelike, java.util.Map attribute2oldvalue_tablelike, java.util.Map attribute2oldvalue_treelike)
           Constructor specifying the kind of event and the AttributableOnSet instance this event is raised by.
 

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

Classes in com.tensegrity.graph.layout.controller that implement AttributableOnSet
 class FreeWorkflowLayoutController
           The FreeWorkflowLayoutController is a concrete LayoutController class used to layout a free workflow.
 class GraphLayoutController
           Class GraphLayoutController provides the generic functionality needed in many free-flowing graph editors and modelers.
 class LayoutController
           The abstract class LayoutController is responsible for managing a number of Layout instances and ensuring that they are properly used.
 class OrgChartLayoutController
           The OrgChartLayoutController is a concrete LayoutController class used to layout an organizational chart.
 class SwimlaneLayoutController
           This class implements a layout controller for swimlane application.
 class WorkflowLayoutController
           Class WorkflowLayoutController provides the generic functionality that is needed in many workflow applications.
 

Uses of AttributableOnSet in com.tensegrity.graph.model
 

Subinterfaces of AttributableOnSet in com.tensegrity.graph.model
 interface Edge
           A graph Edge (link, arc, connection, association) in the abstract.
 interface Graph
           This interface defines an abstract Graph without any notion of a visualization.
 interface GraphObject
           This interface represents the aspects common to all Graph elements, including a Node, Edge and Subgraph.
 interface Node
           This interface represents the functionality of any potential vertex in a graph.
 interface PortDenotation
           A PortDenotation is a meta-level class which encapusates the rules about incoming and outgoing connections to a Port.
 interface Subgraph
           This interface defines a nested Graph that appears to be a single Node from the perspective of its parent.
 

Uses of AttributableOnSet in com.tensegrity.graph.view
 

Subinterfaces of AttributableOnSet in com.tensegrity.graph.view
 interface VisualEdge
           This interface represents the functionality of any potential Edge representation.
 interface VisualEdgeComposite
          The VisualEdgeComposite interface is a generalization of the CompositeLine interface.
 interface VisualGraphObject
           This interface represents the aspects common to all visual graph elements, including a VisualNode, VisualEdge and VisualSubgraph.
 interface VisualGraphObjectComposite
          The VisualGraphObjectComposite interface is a generalization of the BaseComposite interface.
 interface VisualNode
           This interface represents the functionality of any potential Node representation.
 interface VisualNodeComposite
          The VisualNodeComposite interface is a generalization of the Composite interface.
 interface VisualSubgraph
          VisualSubgraph are the view counterparts to the Subgraph objects in the graph model package.
 interface VisualSubgraphComposite
          The VisualSubgraphComposite interface is a generalization of the CompositeGroup interface.
 

Methods in com.tensegrity.graph.view with parameters of type AttributableOnSet
static boolean VisualGraphViewUtil.containsAttributeValue(AttributableOnSet attribOnSet, java.lang.String text)
          Checks if the given AttributableOnSet contains an attribute that contains the given text in its value.
 

Uses of AttributableOnSet in com.tensegrity.graphics
 

Subinterfaces of AttributableOnSet in com.tensegrity.graphics
 interface Primitive
           This interface defines an atomic graphical shape.
 

Classes in com.tensegrity.graphics that implement AttributableOnSet
 class AbstractPrimitive
           The AbstractPrimitive class contains the shared, reusable code needed by all of our Primitive implementations.
 

Uses of AttributableOnSet in com.tensegrity.graphics.primitive2D
 

Classes in com.tensegrity.graphics.primitive2D that implement AttributableOnSet
 class Ellipse2D
           An object of class Ellipse2D represents a 2-dimensional elliptical shape specified by a rectangular boundary.
 class Label2D
           An object of class Label2D represents a 2-dimensional multi-lined text area that may be edited in-place.
 class Line2D
           An object of class Line2D represents a 2-dimensional line segment.
 class Polygon2D
           A Polygon2D is a closed two-dimensional region with three or more sides.
 class Polyline2D
           An object of class Polyline2D represents a two-dimensional line consisting of one or more line segments.
 class Rect2D
           An object of class Rect2D represents a 2-dimensional rectangular shape.
 

Uses of AttributableOnSet in com.tensegrity.gui.component
 

Methods in com.tensegrity.gui.component that return AttributableOnSet
 AttributableOnSet AttributeEditor.getAttributableOnSet()
          Returns the current AttributableOnSet.
 

Methods in com.tensegrity.gui.component with parameters of type AttributableOnSet
 void AttributeEditor.setAttributableOnSet(AttributableOnSet attributable)
          Sets the AttributableOnSet that should be shown in the editor.
 void AttributeEditorStateManager.storeEditorState(AttributableOnSet attributable)
          Stores the state for the given AttributableOnSet when it is removed from the AttributeEditor.
 void AttributeEditorStateManager.restoreEditorState(AttributableOnSet attributable)
          Restores the state for the given AttributableOnSet when it is assigned to the AttributeEditor.
 

Uses of AttributableOnSet in com.tensegrity.gui.container
 

Classes in com.tensegrity.gui.container that implement AttributableOnSet
 class HiddenSlidesAttributableOnSet
           
 

Uses of AttributableOnSet in com.tensegrity.gui.graphdocument
 

Classes in com.tensegrity.gui.graphdocument that implement AttributableOnSet
static class ElementDefinitionUtil.RenameAttributable
           Abstract class for an AttributableOnSet that can be used to rename multiple items in the context of an AttributeEditor.
 

Methods in com.tensegrity.gui.graphdocument that return AttributableOnSet
 AttributableOnSet GraphPanelAttributableOnSetDelegate.getDeterminedAttributableOnSet()
          Returns the attributable that has been determined in the last call to GraphPanelAttributableOnSetDelegate.determineAttributableOnSet(AttributeEditor, VisualGraphView).
 AttributableOnSet GraphPanelAttributableOnSetDelegate.getAttributable()
          Returns the associated AttributableOnSet instance of this delegate.
 

Uses of AttributableOnSet in com.tensegrity.gui.swing.control.attributeeditor
 

Classes in com.tensegrity.gui.swing.control.attributeeditor that implement AttributableOnSet
 class EditorStateAttributableOnSet
          AttributableOnSet to edit the hidden state of attributes that is stored in the AttributeEditorProperties.
 

Methods in com.tensegrity.gui.swing.control.attributeeditor with parameters of type AttributableOnSet
 void EditorStateAttributableOnSet.setAttributableOnSet(AttributableOnSet onset)
          Sets the attributableOnSet for that the attribute visibility should be edited
 

Uses of AttributableOnSet in com.tensegrity.gui.swing.control.attributetable
 

Methods in com.tensegrity.gui.swing.control.attributetable that return AttributableOnSet
 AttributableOnSet SwingAttributeTable.getAttributableOnSet()
           
 

Methods in com.tensegrity.gui.swing.control.attributetable with parameters of type AttributableOnSet
 void SwingAttributeTable.setAttributableOnSet(AttributableOnSet attributable)
          Associates a new attributeset with the attributetable's model.
 

Uses of AttributableOnSet in com.tensegrity.gui.swing.control.attributetree
 

Classes in com.tensegrity.gui.swing.control.attributetree that implement AttributableOnSet
 class AttributeTreeCategory
          AttributableOnSet implementation to represent categories in the AttributeTree.
 

Methods in com.tensegrity.gui.swing.control.attributetree that return AttributableOnSet
 AttributableOnSet AttributeTreeModel.getAttributableOnSet()
          Returns the AttributableOnSet currently loaded into the table
 AttributableOnSet SwingAttributeTree.getAttributableOnSet()
           
 

Methods in com.tensegrity.gui.swing.control.attributetree with parameters of type AttributableOnSet
 void DefaultSwingAttributeTreeStateManager.storeEditorState(AttributableOnSet attributable)
           
 void DefaultSwingAttributeTreeStateManager.restoreEditorState(AttributableOnSet attributable)
           
 void AttributeTreeModel.setAttributableOnSet(AttributableOnSet attributable)
          Sets the AttributableOnSet to be edited in this table
 void AttributeTreeState.setAttributable(AttributableOnSet attributable)
          Sets the attributable of this treestate
 void SwingAttributeTree.setAttributableOnSet(AttributableOnSet attributable)
           
 

Constructors in com.tensegrity.gui.swing.control.attributetree with parameters of type AttributableOnSet
AttributeTreeState(AttributableOnSet attributable)
          Constructor
 

Uses of AttributableOnSet in com.tensegrity.gui.swing.dialog
 

Methods in com.tensegrity.gui.swing.dialog with parameters of type AttributableOnSet
 void PropertiesDialog.setAttributableOnSet(AttributableOnSet onset)
          Sets the AttributableOnSet of the attribute editor
 void AttributesEditorStateDialog.setAttributableOnSet(AttributableOnSet onset)
          Sets the AttributableOnSet of the attribute editor
 

Constructors in com.tensegrity.gui.swing.dialog with parameters of type AttributableOnSet
AttributableOnSetDialog(AttributableOnSet attributable, boolean isTree, boolean editable, java.lang.String propertyFileName, java.awt.Dialog owner, UIManager uiManager, java.lang.String keyTitle, java.lang.String keyDescription, java.lang.String keyAttributeEditorTitle, java.lang.String[] btnIDs)
          Constructor
AttributableOnSetDialog(AttributableOnSet attributable, boolean isTree, boolean editable, java.lang.String propertyFileName, java.awt.Frame owner, UIManager uiManager, java.lang.String keyTitle, java.lang.String keyDescription, java.lang.String keyAttributeEditorTitle, java.lang.String[] btnIDs)
          Constructor
 

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

Methods in com.tensegrity.gui.swing.document that return AttributableOnSet
 AttributableOnSet SwingTemplateDocument.getTemplateAttributable()
           
 

Uses of AttributableOnSet in com.tensegrity.gui.swt.control.attributetree
 

Methods in com.tensegrity.gui.swt.control.attributetree that return AttributableOnSet
 AttributableOnSet SwtAttributeTreeModel.getAttributableOnSet()
          Returns the currently set AttributableOnSet displayed by the attribute tree.
 AttributableOnSet SwtAttributeTree.getAttributableOnSet()
           
 AttributableOnSet CopyOfSwtAttributeTable.getAttributableOnSet()
           
 

Methods in com.tensegrity.gui.swt.control.attributetree with parameters of type AttributableOnSet
 void SwtAttributeTreeModel.setAttributableOnSet(AttributableOnSet attributable)
          Sets the AttributableOnSet to be edited in this tree
 void SwtAttributeTree.setAttributableOnSet(AttributableOnSet attributable)
           
 void CopyOfSwtAttributeTable.setAttributableOnSet(AttributableOnSet attributable)
          Associates a new attributeset with the attributetable's model.
 void SwtAttributeTreeStateManager.storeEditorState(AttributableOnSet attributable)
           
 void SwtAttributeTreeStateManager.restoreEditorState(AttributableOnSet attributable)
           
 boolean SwtAttributeTreeStateManager.containsState(AttributableOnSet attributable)
          Checks if the state of the given AttributableOnSet instance was stored before.
 

Uses of AttributableOnSet in com.tensegrity.gui.swt.dialog
 

Constructors in com.tensegrity.gui.swt.dialog with parameters of type AttributableOnSet
SwtAttributableOnSetDialog(AttributableOnSet attributable, boolean isTree, boolean editable, java.lang.String propertyFileName, Frame dlgParent, UIManager uiManager, java.lang.String keyTitle, java.lang.String keyDescription, java.lang.String keyAttributeEditorTitle, java.lang.String[] btnIDs)
          Constructor
SwtAttributableOnSetDialog(AttributableOnSet attributable, boolean isTree, boolean editable, java.lang.String propertyFileName, org.eclipse.swt.widgets.Display owner, UIManager uiManager, java.lang.String keyTitle, java.lang.String keyDescription, java.lang.String keyAttributeEditorTitle, java.lang.String[] btnIDs)
           
 

Uses of AttributableOnSet in com.tensegrity.gui.template
 

Classes in com.tensegrity.gui.template that implement AttributableOnSet
 class AttributableOnSetList
          The class AttributableOnSetList allows you to merge AttributableOnSet instances.
 class TemplateAttributableOnSet
          The GeometryAttributableOnSet represents the current set of Attributes for a Geometry, which can be created/edited with the CompositeEditor.
 

Methods in com.tensegrity.gui.template that return AttributableOnSet
 AttributableOnSet TemplateDocument.getTemplateAttributable()
          Method getTemplateAttributable returns an AttributableOnSet describing all the properties of this document.
 

Methods in com.tensegrity.gui.template with parameters of type AttributableOnSet
 void AttributableOnSetList.add(AttributableOnSet onSet)
          Adds a given AttributableOnSet to the internal list of elements.
 

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

Methods in com.tensegrity.skeleton.container.swing that return AttributableOnSet
static AttributableOnSet SwingRepositoryUtil.getSlidesVisibilityAttributableOnSet(ApplicationFrame appFrame)
          Returns an AttributableOnSet that contains all slidepanels of the application in an hierarchical structure.
 AttributableOnSet SwingAttributeTreeContainer.getAttributableOnSet()
           
 AttributableOnSet SwingAttributeTableContainer.getAttributableOnSet()
           
 

Methods in com.tensegrity.skeleton.container.swing with parameters of type AttributableOnSet
 void SwingAttributeTreeContainer.setAttributableOnSet(AttributableOnSet attributable)
           
 void SwingAttributeTableContainer.setAttributableOnSet(AttributableOnSet attributable)
           
 

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

Methods in com.tensegrity.skeleton.container.swt that return AttributableOnSet
 AttributableOnSet SwtAttributeTreeContainer.getAttributableOnSet()
           
 

Methods in com.tensegrity.skeleton.container.swt with parameters of type AttributableOnSet
 void SwtAttributeTreeContainer.setAttributableOnSet(AttributableOnSet attributable)
           
 



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