Uses of Class
org.eclipse.tigerstripe.workbench.plugins.IDiagramDescriptor.DiagramType

Packages that use IDiagramDescriptor.DiagramType
org.eclipse.tigerstripe.workbench.plugins This package contains the interfaces to be implemented in relation with implementing TS templates, and more generally all interfaces as seen by the user when implementing a Tigerstripe plugin. 
 

Uses of IDiagramDescriptor.DiagramType in org.eclipse.tigerstripe.workbench.plugins
 

Fields in org.eclipse.tigerstripe.workbench.plugins with type parameters of type IDiagramDescriptor.DiagramType
static java.util.EnumSet<IDiagramDescriptor.DiagramType> IDiagramGenerator.DIAGRAM_TYPES
          An EnumSet that collects all available diagram types
 

Methods in org.eclipse.tigerstripe.workbench.plugins that return IDiagramDescriptor.DiagramType
 IDiagramDescriptor.DiagramType IDiagramDescriptor.getDiagramType()
          Returns the type of the diagram as a DiagramType, that is, whether "class" or "instance" diagram.
static IDiagramDescriptor.DiagramType IDiagramDescriptor.DiagramType.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static IDiagramDescriptor.DiagramType[] IDiagramDescriptor.DiagramType.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Methods in org.eclipse.tigerstripe.workbench.plugins with parameters of type IDiagramDescriptor.DiagramType
 java.util.Collection<IDiagramDescriptor> IDiagramGenerator.getAllDiagrams(boolean includeDependencies, IDiagramDescriptor.DiagramType diagramType)
          Returns a Collection of all IDiagramDescriptor objects (each of which contains the data necessary to identify a diagram) in the project selected for generation, and in the referenced projects if "includeDependencies" is supplied as true, that are of the type identified by the "diagramType".
 java.util.Collection<IDiagramDescriptor> IDiagramGenerator.getAllDiagrams(boolean includeDependencies, IDiagramDescriptor.DiagramType diagramType, IPackageArtifact packij, java.lang.String namePattern)
          Returns a Collection of all IDiagramDescriptor objects (each of which contains the data necessary to identify a diagram) in the project selected for generation, and in the referenced projects if "includeDependencies" is supplied as true, that are of the type identified by the supplied "diagramType", that are in the supplied package, and which match the supplied "namePattern".
 java.util.Collection<IDiagramDescriptor> IDiagramGenerator.getAllDiagrams(boolean includeDependencies, IDiagramDescriptor.DiagramType diagramType, java.lang.String namePattern)
          Returns a Collection of all IDiagramDescriptor objects (each of which contains the data necessary to identify a diagram) in the project selected for generation, and in the referenced projects if "includeDependencies" is supplied as true, that are of the type identified by the supplied "diagramType" and which match the supplied "namePattern".
 java.util.Collection<IDiagramDescriptor> IDiagramGenerator.getAllDiagrams(IDiagramDescriptor.DiagramType diagramType)
          Returns a Collection of all IDiagramDescriptor objects (each of which contains the data necessary to identify a diagram) in the project selected for generation that are of the type identified by the "diagramType".
 java.util.Collection<IDiagramDescriptor> IDiagramGenerator.getAllDiagrams(IDiagramDescriptor.DiagramType diagramType, IPackageArtifact packij, java.lang.String namePattern)
          Returns a Collection of all IDiagramDescriptor objects (each of which contains the data necessary to identify a diagram) in the project selected for generation that are of the type identified by the supplied "diagramType", that are in the supplied package, and which match the supplied "namePattern".
 java.util.Collection<IDiagramDescriptor> IDiagramGenerator.getAllDiagrams(IDiagramDescriptor.DiagramType diagramType, java.lang.String namePattern)
          Returns a Collection of all IDiagramDescriptor objects (each of which contains the data necessary to identify a diagram) in the project selected for generation that are of the type identified by the supplied "diagramType" and which match the supplied "namePattern".