Uses of Class
de.uni_paderborn.fujaba.asg.ASGDiagram

Packages that use ASGDiagram
de.uni_paderborn.fujaba.app The Fujaba Application 
de.uni_paderborn.fujaba.asg The Abstract Syntax Graph model. 
de.uni_paderborn.fujaba.gui Graphical User Interface 
de.uni_paderborn.fujaba.gxl   
de.uni_paderborn.fujaba.packagediagrams   
de.uni_paderborn.fujaba.packagediagrams.gui   
de.uni_paderborn.fujaba.uml UML-Abstract Syntax Tree Structure 
de.uni_paderborn.fujaba.uml.gui   
de.uni_paderborn.fujaba.uml.utility   
de.uni_paderborn.fujaba.views   
de.uni_paderborn.fujaba.views.cf   
 

Uses of ASGDiagram in de.uni_paderborn.fujaba.app
 

Methods in de.uni_paderborn.fujaba.app that return ASGDiagram
 ASGDiagram InternalFrame.getDiagram()
           
 

Methods in de.uni_paderborn.fujaba.app with parameters of type ASGDiagram
 void FrameMain.showDiagram(ASGDiagram diag)
          Switch the view to a specific diagram
 InternalFrame FrameMain.getInternalFrame(ASGDiagram diagram)
          Find or create an internal frame for a diagram.
 void FrameMain.closeInternalFrameOfDiag(ASGDiagram diag)
          Close the internal frame of the diagram if one exists.
 void FrameMain.doEverythingOnEntry(ASGDiagram diag)
          No comment provided by developer, please add a comment to improve documentation.
 void FrameMain.doEverythingOnEntry(ASGDiagram diag, boolean saveScrollBarPos)
          No comment provided by developer, please add a comment to improve documentation.
 void FrameMain.doEverythingOnExit(ASGDiagram diag)
          No comment provided by developer, please add a comment to improve documentation.
 void FrameMain.doEverythingOnExit(ASGDiagram diag, boolean saveScrollBarPos)
          No comment provided by developer, please add a comment to improve documentation.
abstract  void FrameDecorator.enterDiagram(ASGDiagram diag)
          Checks wether decorator is responsible for the given diagram.
abstract  void FrameDecorator.leaveDiagram(ASGDiagram diag)
          Checks wether decorator is responsible for the given diagram.
 javax.swing.tree.DefaultMutableTreeNode FrameDecorator.getTreeNode(ASGDiagram diag)
          Get the treeNode attribute of the FrameDecorator object
 

Constructors in de.uni_paderborn.fujaba.app with parameters of type ASGDiagram
InternalFrame(ASGDiagram shownDiagram, FrameMain frameMain)
          Creates a resizable, closable, maximizable, iconifiable InternalFrame with the diagram associated.
 

Uses of ASGDiagram in de.uni_paderborn.fujaba.asg
 

Methods in de.uni_paderborn.fujaba.asg that return ASGDiagram
 ASGDiagram ASGUtility.getDiagram()
          Get the diagram attribute of the ASGUtility object
static ASGDiagram ASGToolBox.getDiagramOfDiagramItem(ASGElement item)
          Get the diagramOfDiagramItem attribute of the Utility class
 ASGDiagram ASGProject.getCurrentDiagram()
           
 

Methods in de.uni_paderborn.fujaba.asg with parameters of type ASGDiagram
 boolean ASGUtility.setDiagram(ASGDiagram value)
          Sets the diagram attribute of the ASGUtility object
 boolean ASGProject.hasInDiags(ASGDiagram diagram)
          returns true if the given diagram is found in the set of diagrams of this project.
 void ASGProject.removeFromDiags(ASGDiagram diagram)
          remove the given diagram from the project.
 boolean ASGProject.setCurrentDiagram(ASGDiagram value)
           
 

Constructors in de.uni_paderborn.fujaba.asg with parameters of type ASGDiagram
ASGUtility(ASGDiagram diagram)
          Constructor for abstract class ASGUtility
 

Uses of ASGDiagram in de.uni_paderborn.fujaba.gui
 

Methods in de.uni_paderborn.fujaba.gui with parameters of type ASGDiagram
 void EditModeFactory.activate(ASGDiagram diagram)
          Activate an appropriate edit mode for the specified diagram.
 

Uses of ASGDiagram in de.uni_paderborn.fujaba.gxl
 

Fields in de.uni_paderborn.fujaba.gxl declared as ASGDiagram
static ASGDiagram GXLFilter.root
          No comment provided by developer, please add a comment to improve documentation.
 

Methods in de.uni_paderborn.fujaba.gxl that return ASGDiagram
 ASGDiagram GXLImport.getImportPoint()
          Get the importPoint attribute of the GXLImport object
static ASGDiagram GXLFilter.getRoot()
          Get the root attribute of the GXLFilter class
 

Methods in de.uni_paderborn.fujaba.gxl with parameters of type ASGDiagram
 void UMLClassDiagramMerger.merge(ASGDiagram point, java.util.Vector actualNodes, GXLImport imp)
          No comment provided by developer, please add a comment to improve documentation.
 void UMLActivityDiagramMerger.merge(ASGDiagram point, java.util.Vector actualNodes, GXLImport imp)
          No comment provided by developer, please add a comment to improve documentation.
static void GXLFilter.addToAddDiagrams(ASGDiagram diag)
          Access method for an one to n association.
static boolean GXLFilter.hasInAddDiagrams(ASGDiagram diag)
          No comment provided by developer, please add a comment to improve documentation.
static void GXLFilter.addToSavedDiagrams(ASGDiagram diag)
          Access method for an one to n association.
static boolean GXLFilter.hasInSavedDiagrams(ASGDiagram diag)
          No comment provided by developer, please add a comment to improve documentation.
static AbstractMerger Creator.getMerger(ASGDiagram tmp)
          Get the merger attribute of the Creator class
abstract  void AbstractMerger.merge(ASGDiagram point, java.util.Vector actualNodes, GXLImport imp)
          No comment provided by developer, please add a comment to improve documentation.
 void AbstractMerger.postprocessing(ASGDiagram diagram)
          Overwrite this method to start actions after import was completed
 boolean AbstractMerger.checkInput(ASGDiagram point, java.util.Vector actualNodes, GXLImport imp)
          Overwrite this method in your merger and return false if you want to cancel the import process without importing anything.
 

Constructors in de.uni_paderborn.fujaba.gxl with parameters of type ASGDiagram
GXLImport(FXMLTree tree, ASGDiagram point)
          Constructor for class GXLImport
GXLImport(FXMLTree tree, ASGDiagram point, java.util.HashMap presentObjects)
          Constructor for class GXLImport
 

Uses of ASGDiagram in de.uni_paderborn.fujaba.packagediagrams
 

Subclasses of ASGDiagram in de.uni_paderborn.fujaba.packagediagrams
 class PackageDiagram
          A Package Diagram.
 

Methods in de.uni_paderborn.fujaba.packagediagrams that return ASGDiagram
 ASGDiagram DiagramUsage.getDiagram()
          UMLMethod: '+ getDiagram (): UMLDiagram'
 

Methods in de.uni_paderborn.fujaba.packagediagrams with parameters of type ASGDiagram
 boolean DiagramUsage.setDiagram(ASGDiagram value)
          UMLMethod: '+ setDiagram (value: UMLDiagram): Boolean'
 

Uses of ASGDiagram in de.uni_paderborn.fujaba.packagediagrams.gui
 

Methods in de.uni_paderborn.fujaba.packagediagrams.gui with parameters of type ASGDiagram
 void FrameDecoratorPackageDiagram.enterDiagram(ASGDiagram diag)
          Checks wether decorator is responsible for the given diagram.
 void FrameDecoratorPackageDiagram.leaveDiagram(ASGDiagram diag)
          Checks wether decorator is responsible for the given diagram.
 

Uses of ASGDiagram in de.uni_paderborn.fujaba.uml
 

Subclasses of ASGDiagram in de.uni_paderborn.fujaba.uml
 class UMLActivityDiagram
          Associations 0..1 contains n UMLComplexState --------------------------- UMLActivityDiagram revContains contains
 class UMLClassDiagram
           
 class UMLDiagram
          No comment provided by developer, please add a comment to improve documentation.
 class UMLObjectDiagram
          This class represents an object diagram.
 class UMLReactiveDiagram
          
 class UMLStatechart
          No comment provided by developer, please add a comment to improve documentation.
 class UMLStoryPattern
           
 class UMLTransitionDiagram
          UMLClass: 'UMLTransitionDiagram'.
 

Methods in de.uni_paderborn.fujaba.uml that return ASGDiagram
static ASGDiagram UMLProject.retrieveDiagramByName(java.lang.String name)
          Retrieve the diagram by the specified name.
 

Uses of ASGDiagram in de.uni_paderborn.fujaba.uml.gui
 

Methods in de.uni_paderborn.fujaba.uml.gui with parameters of type ASGDiagram
 void FrameDecoratorUMLStoryPattern.enterDiagram(ASGDiagram diag)
          Checks wether decorator is responsible for the given diagram.
 void FrameDecoratorUMLStoryPattern.leaveDiagram(ASGDiagram diag)
          Checks wether decorator is responsible for the given diagram.
 void FrameDecoratorUMLStatechart.enterDiagram(ASGDiagram diag)
          Checks wether decorator is responsible for the given diagram.
 void FrameDecoratorUMLStatechart.leaveDiagram(ASGDiagram diag)
          Checks wether decorator is responsible for the given diagram.
 void FrameDecoratorUMLClassDiagram.enterDiagram(ASGDiagram diag)
          Checks wether decorator is responsible for the given diagram.
 void FrameDecoratorUMLClassDiagram.leaveDiagram(ASGDiagram diag)
          Checks wether decorator is responsible for the given diagram.
 void FrameDecoratorUMLActivityDiagram.enterDiagram(ASGDiagram diag)
          Checks wether decorator is responsible for the given diagram.
 void FrameDecoratorUMLActivityDiagram.leaveDiagram(ASGDiagram diag)
          Checks wether decorator is responsible for the given diagram.
 

Uses of ASGDiagram in de.uni_paderborn.fujaba.uml.utility
 

Constructors in de.uni_paderborn.fujaba.uml.utility with parameters of type ASGDiagram
UMLObjectDiagramUtility(ASGDiagram diagram)
          Constructor for abstract class ASGUtility
UMLClassDiagramUtility(ASGDiagram diagram)
          Constructor for abstract class ASGUtility
 

Uses of ASGDiagram in de.uni_paderborn.fujaba.views
 

Subclasses of ASGDiagram in de.uni_paderborn.fujaba.views
 class ViewDiagram
          UMLDiagram that is a View of another Diagram.
 

Uses of ASGDiagram in de.uni_paderborn.fujaba.views.cf
 

Subclasses of ASGDiagram in de.uni_paderborn.fujaba.views.cf
 class CFDiagram
          The CFDiagram aalows definition of complex filter rules by combining rules with set operations represented by nodes in this diagram