A B C D E F G H I J K L M N O P Q R S T U V W X Y _

F

Fig - Class in org.tigris.gef.presentation
This class is the base class for basic drawing objects such as rectangles, lines, text, circles, etc.
Fig() - Constructor for class org.tigris.gef.presentation.Fig
Most subclasses will not use this constructor, it is only useful for subclasses that redefine most of the infrastructure provided by class Fig.
Fig(int, int, int, int) - Constructor for class org.tigris.gef.presentation.Fig
Construct a new Fig with the given bounds.
Fig(int, int, int, int, Color, Color) - Constructor for class org.tigris.gef.presentation.Fig
Construct a new Fig with the given bounds and colors.
Fig(int, int, int, int, Color, Color, Object) - Constructor for class org.tigris.gef.presentation.Fig
Construct a new Fig with the given bounds, colors, and owner.
FigCircle - Class in org.tigris.gef.presentation
Primitive Fig for displaying circles and ovals.
FigCircle(int, int, int, int) - Constructor for class org.tigris.gef.presentation.FigCircle
Construct a new FigCircle with the given position, size, and attributes.
FigCircle(int, int, int, int, Color, Color) - Constructor for class org.tigris.gef.presentation.FigCircle
Construct a new FigCircle with the given position, size, line color, and fill color
FigCircle(int, int, int, int, boolean) - Constructor for class org.tigris.gef.presentation.FigCircle
Construct a new FigCircle w/ the given position and size.
FigCircle(int, int, int, int, boolean, Color, Color) - Constructor for class org.tigris.gef.presentation.FigCircle
Construct a new FigCircle w/ the given position, size, line color, and fill color.
FigCube - Class in org.tigris.gef.presentation
This class is needed to paint cubes (the only 3dim Element in UML)
FigCube(int, int, int, int, Color, Color) - Constructor for class org.tigris.gef.presentation.FigCube
 
FigCube(int, int, int, int) - Constructor for class org.tigris.gef.presentation.FigCube
 
FigDiamond - Class in org.tigris.gef.presentation
Primitive Fig to paint rectangles on a LayerDiagram.
FigDiamond(int, int, int, int) - Constructor for class org.tigris.gef.presentation.FigDiamond
Construct a new resizable FigRect with the given position and size.
FigDiamond(int, int, int, int, Color, Color) - Constructor for class org.tigris.gef.presentation.FigDiamond
Construct a new resizable FigRect with the given position, size, line color, and fill color.
FigDiamond(int, int, int, int, boolean) - Constructor for class org.tigris.gef.presentation.FigDiamond
Construct a new FigRect w/ the given position and size.
FigDiamond(int, int, int, int, boolean, Color, Color) - Constructor for class org.tigris.gef.presentation.FigDiamond
Construct a new FigRect w/ the given position, size, line color, and fill color.
FigEdge - Class in org.tigris.gef.presentation
Abastract Fig class for representing edges between ports.
FigEdge() - Constructor for class org.tigris.gef.presentation.FigEdge
Contruct a new FigEdge without any underlying edge.
FigEdge(Fig, Fig, FigNode, FigNode, Object) - Constructor for class org.tigris.gef.presentation.FigEdge
Contruct a new FigEdge with the given source and destination port figs and FigNodes.
FigEdgeLine - Class in org.tigris.gef.presentation
An FigEdge that shows a straight line from the source port to the destination port.
FigEdgeLine() - Constructor for class org.tigris.gef.presentation.FigEdgeLine
 
FigEdgeLineDotted - Class in org.tigris.gef.presentation
An FigEdge that shows a straight line from the source port to the destination port.
FigEdgeLineDotted() - Constructor for class org.tigris.gef.presentation.FigEdgeLineDotted
 
FigEdgePoly - Class in org.tigris.gef.presentation
A Fig that paints edges between ports.
FigEdgePoly() - Constructor for class org.tigris.gef.presentation.FigEdgePoly
 
FigEdgeRectiline - Class in org.tigris.gef.presentation
A Fig that paints edges between ports.
FigEdgeRectiline() - Constructor for class org.tigris.gef.presentation.FigEdgeRectiline
 
FigGroup - Class in org.tigris.gef.presentation
A FigGroup is a collection of Figs to all be treated as a single item
FigGroup() - Constructor for class org.tigris.gef.presentation.FigGroup
Construct a new FigGroup that holds no Figs.
FigGroup(List) - Constructor for class org.tigris.gef.presentation.FigGroup
Construct a new FigGroup that holds the given Figs.
FigImage - Class in org.tigris.gef.presentation
Primitive Fig to paint images (such as icons) on a LayerDiagram.
FigImage(int, int, int, int, Image) - Constructor for class org.tigris.gef.presentation.FigImage
Construct a new FigImage with the given position, size, and Image.
FigImage(int, int, Image) - Constructor for class org.tigris.gef.presentation.FigImage
Construct a new FigImage w/ the given position and image.
FigImage(int, int, URL) - Constructor for class org.tigris.gef.presentation.FigImage
Construct a new FigImage w/ the given position and URL.
FigInk - Class in org.tigris.gef.presentation
Primitive Fig to paint Ink on a LayerDiagram.
FigInk() - Constructor for class org.tigris.gef.presentation.FigInk
Construct a new FigInk w/ the given attributes.
FigInk(int, int) - Constructor for class org.tigris.gef.presentation.FigInk
Construct a new FigInk w/ the given point and attributes.
FigLine - Class in org.tigris.gef.presentation
Class to display lines in diagrams.
FigLine(int, int, int, int, Color) - Constructor for class org.tigris.gef.presentation.FigLine
Construct a new FigLine with the given coordinates and color.
FigLine(int, int, int, int) - Constructor for class org.tigris.gef.presentation.FigLine
Construct a new FigLine with the given coordinates and attributes.
FigModifyingMode - Interface in org.tigris.gef.base
This is the basic interface for all Modes that are manipulating the visual representation of the underlying model.
FigModifyingModeImpl - Class in org.tigris.gef.base
This is the default implementation for all Modes that are manipulating the visual representation of the underlying model.
FigModifyingModeImpl(Editor) - Constructor for class org.tigris.gef.base.FigModifyingModeImpl
Construct a new Mode instance with the given Editor as its editor
FigModifyingModeImpl(Hashtable) - Constructor for class org.tigris.gef.base.FigModifyingModeImpl
Constructs a new Mode instance with some initial parameters.
FigModifyingModeImpl() - Constructor for class org.tigris.gef.base.FigModifyingModeImpl
Construct a new Mode instance without any Editor as its parent, the parent must be filled in before the instance is actually used.
FigNode - Class in org.tigris.gef.presentation
Class to present a node (such as a NetNode) in a diagram.
FigNode() - Constructor for class org.tigris.gef.presentation.FigNode
 
FigNode(Object) - Constructor for class org.tigris.gef.presentation.FigNode
Constructs a new FigNode on the given node with the given owner.
FigNode(Object, Collection) - Constructor for class org.tigris.gef.presentation.FigNode
Constructs a new FigNode on the given node with the given owner and Figs.
FigPainter - Interface in org.tigris.gef.presentation
 
FigPoly - Class in org.tigris.gef.presentation
Primitive Fig to paint Polygons on a LayerDiagram.
FigPoly(Color) - Constructor for class org.tigris.gef.presentation.FigPoly
Construct a new FigPoly w/ the given line color.
FigPoly(Color, Color) - Constructor for class org.tigris.gef.presentation.FigPoly
Construct a new FigPoly w/ the given line color and fill color.
FigPoly() - Constructor for class org.tigris.gef.presentation.FigPoly
Construct a new FigPoly.
FigPoly(int, int) - Constructor for class org.tigris.gef.presentation.FigPoly
Construct a new FigPoly w/ the given point.
FigRect - Class in org.tigris.gef.presentation
Primitive Fig to paint rectangles on a LayerDiagram.
FigRect(int, int, int, int) - Constructor for class org.tigris.gef.presentation.FigRect
Construct a new resizable FigRect with the given position and size.
FigRect(int, int, int, int, Color, Color) - Constructor for class org.tigris.gef.presentation.FigRect
Construct a new resizable FigRect with the given position, size, line color, and fill color.
FigRect(int, int, int, int, boolean) - Constructor for class org.tigris.gef.presentation.FigRect
Construct a new FigRect w/ the given position and size.
FigRect(int, int, int, int, boolean, Color, Color) - Constructor for class org.tigris.gef.presentation.FigRect
Construct a new FigRect w/ the given position, size, line color, and fill color.
FigRRect - Class in org.tigris.gef.presentation
Primitive Fig to paint rounded rectangles on a LayerDiagram.
FigRRect(int, int, int, int) - Constructor for class org.tigris.gef.presentation.FigRRect
Construct a new FigRRect w/ the given position and size
FigRRect(int, int, int, int, Color, Color) - Constructor for class org.tigris.gef.presentation.FigRRect
Construct a new FigRRect w/ the given position, size, line color, and fill color
figs() - Method in class org.tigris.gef.base.Editor
Returns a collection of all Figs in the layer currently being edited.
FigSampleNode - Class in org.tigris.gef.demo
 
FigSampleNode() - Constructor for class org.tigris.gef.demo.FigSampleNode
 
FigSampleNode3 - Class in org.tigris.gef.demo
 
FigSampleNode3() - Constructor for class org.tigris.gef.demo.FigSampleNode3
 
FigSpline - Class in org.tigris.gef.presentation
 
FigSpline() - Constructor for class org.tigris.gef.presentation.FigSpline
 
FigSpline(int, int) - Constructor for class org.tigris.gef.presentation.FigSpline
 
FigSpline(Color) - Constructor for class org.tigris.gef.presentation.FigSpline
 
FigSpline(Color, Color) - Constructor for class org.tigris.gef.presentation.FigSpline
 
FigText - Class in org.tigris.gef.presentation
This class handles painting and editing text Fig's in a LayerDiagram.
FigText(int, int, int, int, Color, String, int, boolean) - Constructor for class org.tigris.gef.presentation.FigText
Construct a new FigText with the given position, size, color, string, font, and font size.
FigText(int, int, int, int, Color, String, int) - Constructor for class org.tigris.gef.presentation.FigText
 
FigText(int, int, int, int, Color, Font) - Constructor for class org.tigris.gef.presentation.FigText
 
FigText(int, int, int, int) - Constructor for class org.tigris.gef.presentation.FigText
Construct a new FigText with the given position and size
FigText(int, int, int, int, boolean) - Constructor for class org.tigris.gef.presentation.FigText
Construct a new FigText with the given position, size, and attributes.
FigTextAnnotationProperties - Class in org.tigris.gef.presentation
 
FigTextAnnotationProperties(boolean, int, boolean, float) - Constructor for class org.tigris.gef.presentation.FigTextAnnotationProperties
 
FigTextAnnotationProperties(int, float) - Constructor for class org.tigris.gef.presentation.FigTextAnnotationProperties
 
FigTextEditor - Class in org.tigris.gef.presentation
 
FigTextEditor() - Constructor for class org.tigris.gef.presentation.FigTextEditor
Needs-more-work: does not open if I use tab to select the FigText.
filenameToURI(String) - Static method in class org.tigris.gef.util.Util
Fixes a platform dependent filename to standard URI form.
fileToURL(File) - Static method in class org.tigris.gef.util.Util
 
fill(Shape) - Method in class org.tigris.gef.persistence.PostscriptWriter
 
fillArc(int, int, int, int, int, int) - Method in class org.tigris.gef.persistence.PostscriptWriter
 
fillArc(int, int, int, int, int, int) - Method in class org.tigris.gef.persistence.SVGWriter
 
fillOval(int, int, int, int) - Method in class org.tigris.gef.persistence.PostscriptWriter
 
fillOval(int, int, int, int) - Method in class org.tigris.gef.persistence.SVGWriter
 
fillPolygon(int[], int[], int) - Method in class org.tigris.gef.persistence.PostscriptWriter
 
fillPolygon(Polygon) - Method in class org.tigris.gef.persistence.PostscriptWriter
 
fillPolygon(int[], int[], int) - Method in class org.tigris.gef.persistence.SVGWriter
 
fillPolygon(Polygon) - Method in class org.tigris.gef.persistence.SVGWriter
 
fillRect(int, int, int, int) - Method in class org.tigris.gef.persistence.PostscriptWriter
 
fillRect(int, int, int, int) - Method in class org.tigris.gef.persistence.SVGWriter
 
fillRoundRect(int, int, int, int, int, int) - Method in class org.tigris.gef.persistence.PostscriptWriter
 
fillRoundRect(int, int, int, int, int, int) - Method in class org.tigris.gef.persistence.SVGWriter
 
findAvoidPt(int, int, int, int, Rectangle, Rectangle) - Method in class org.tigris.gef.presentation.FigEdgePoly
Find a point on the corner of one of the avoid rectangles that is a good intermediate point for the edge layout.
findAvoidPt(int, int, int, int, Rectangle, Rectangle) - Method in class org.tigris.gef.presentation.FigEdgeRectiline
Find a point on the corner of one of the avoid rectangles that is a good intermediate point for the edge layout.
findCommonSuperClass() - Method in class org.tigris.gef.base.SelectionManager
Determines and returns the first common superclass of all selected items.
findFig(String) - Method in class org.tigris.gef.xml.pgml.PGMLParser
 
findFig(String) - Method in class org.tigris.gef.xml.svg.SVGParser
 
findFirstSelectionOfType(Class) - Method in class org.tigris.gef.base.SelectionManager
Searches for the first appearance of an object of the designated type in the current selection.
findFrame() - Method in class org.tigris.gef.base.Editor
Find the AWT Frame that this Editor is being displayed in.
findHandle(int, int) - Method in class org.tigris.gef.presentation.FigPoly
Reply the index of the vertex that the given mouse point is near.
findLayerNamed(String) - Method in class org.tigris.gef.base.LayerManager
Find a layer with the given name somewhere in the layer tree.
findNext() - Method in class org.tigris.gef.util.EnumerationComposite
Internal function to find the element to return on the next call to nextElement().
findNext() - Method in class org.tigris.gef.util.EnumerationPredicate
Internal method to find the next element that satisfies the predicate and store it in _nextElement.
findOwner(String) - Method in class org.tigris.gef.xml.pgml.PGMLParser
 
findOwner(String) - Method in class org.tigris.gef.xml.svg.SVGParser
 
findSelectionAt(int, int) - Method in class org.tigris.gef.base.SelectionManager
 
findSelectionFor(Fig) - Method in class org.tigris.gef.base.SelectionManager
 
finishMode() - Method in class org.tigris.gef.base.Editor
Set this Editor's current Mode to the next global Mode.
fireActionEvent(ActionEvent) - Method in class org.tigris.gef.properties.ui.ColorTilePanel
 
fireEdgeAdded(Object) - Method in class org.tigris.gef.graph.MutableGraphSupport
 
fireEdgeRemoved(Object) - Method in class org.tigris.gef.graph.MutableGraphSupport
 
fireGraphChanged() - Method in class org.tigris.gef.graph.MutableGraphSupport
 
fireModeChanged() - Method in class org.tigris.gef.base.ModeManager
 
fireNodeAdded(Object) - Method in class org.tigris.gef.graph.MutableGraphSupport
 
fireNodeRemoved(Object) - Method in class org.tigris.gef.graph.MutableGraphSupport
 
firePropChange(Object, String, boolean, boolean) - Static method in class org.tigris.gef.base.Globals
Send a property change event to listeners of the src Fig.
firePropChange(Object, String, int, int) - Static method in class org.tigris.gef.base.Globals
Send a property change event to listeners of the src Fig.
firePropChange(Object, String, Object, Object) - Static method in class org.tigris.gef.base.Globals
Send a property change event to listeners of the src Fig.
firePropChange(String, int, int) - Method in class org.tigris.gef.presentation.Fig
 
firePropChange(String, Object, Object) - Method in class org.tigris.gef.presentation.Fig
Creates a PropertyChangeEvent and calls all registered listeners propertyChanged() method.
firePropChange(String, boolean, boolean) - Method in class org.tigris.gef.presentation.Fig
 
firePropertyChange(String, Object, Object) - Method in class org.tigris.gef.base.Diagram
 
firePropertyChange(String, Object, Object) - Method in class org.tigris.gef.graph.presentation.NetPrimitive
 
firePropertyChange(String, boolean, boolean) - Method in class org.tigris.gef.graph.presentation.NetPrimitive
 
firePropertyChange(String, int, int) - Method in class org.tigris.gef.graph.presentation.NetPrimitive
 
firePropertyChange() - Method in class org.tigris.gef.properties.ui.ColorEditor
 
firePropertyChange() - Method in class org.tigris.gef.properties.ui.RectangleEditor
 
fireSelectionChanged() - Method in class org.tigris.gef.base.SelectionManager
 
fireVetoableChange(String, boolean, boolean) - Method in class org.tigris.gef.base.Diagram
 
fireVetoableChange(String, int, int) - Method in class org.tigris.gef.base.Diagram
 
fireVetoableChange(String, Object, Object) - Method in class org.tigris.gef.base.Diagram
 
fixURLExtension(URL, String) - Static method in class org.tigris.gef.util.Util
 
FlexibleApplet - Class in org.tigris.gef.demo
An example application to show off some of the capabilities of the UCI Graph Editing Framework.
FlexibleApplet() - Constructor for class org.tigris.gef.demo.FlexibleApplet
Construct a new FlexibleApplet
focusGained(FocusEvent) - Method in class org.tigris.gef.presentation.FigTextEditor
 
focusLost(FocusEvent) - Method in class org.tigris.gef.presentation.FigTextEditor
 
forColor(Color) - Static method in class org.tigris.gef.ui.Swatch
 
FUDGEFACTOR - Static variable in class org.tigris.gef.presentation.FigPoly
The radian angle at which a point can be deleted.
Functor - Interface in org.tigris.gef.util
Interface to define Functor objects.
FunctorIdentity - Class in org.tigris.gef.util
A useful implementation of interface Functor that simply returns the same object that was passed to it.
FunctorIdentity() - Constructor for class org.tigris.gef.util.FunctorIdentity
 

A B C D E F G H I J K L M N O P Q R S T U V W X Y _