Uses of Class
prefuse.Alignment

Packages that use Alignment
prefuse The top-level Visualization and Display classes, as well as Constants used throughout the toolkit. 
prefuse.action.layout.graph Action modules for computing the layout of graph or tree structured data. 
prefuse.render Interfaces and modules for rendering VisualItems into a graphics context. 
prefuse.util Utility classes for use by both the toolkit and applications, including color and font support. 
 

Uses of Alignment in prefuse
 

Methods in prefuse that return Alignment
static Alignment Alignment.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Alignment[] Alignment.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Uses of Alignment in prefuse.action.layout.graph
 

Fields in prefuse.action.layout.graph declared as Alignment
protected  Alignment MultiEdgePositioningLayout.m_xAlign1
           
protected  Alignment EdgePositioningLayout.m_xAlign1
           
protected  Alignment MultiEdgePositioningLayout.m_xAlign2
           
protected  Alignment EdgePositioningLayout.m_xAlign2
           
protected  Alignment MultiEdgePositioningLayout.m_yAlign1
           
protected  Alignment EdgePositioningLayout.m_yAlign1
           
protected  Alignment MultiEdgePositioningLayout.m_yAlign2
           
protected  Alignment EdgePositioningLayout.m_yAlign2
           
 

Methods in prefuse.action.layout.graph that return Alignment
 Alignment MultiEdgePositioningLayout.getHorizontalAlignment1()
          Get the horizontal alignment of the edge mount point with the first node.
 Alignment EdgePositioningLayout.getHorizontalAlignment1()
          Get the horizontal aligment of the edge mount point with the first node.
 Alignment MultiEdgePositioningLayout.getHorizontalAlignment2()
          Get the horizontal alignment of the edge mount point with the second node.
 Alignment EdgePositioningLayout.getHorizontalAlignment2()
          Get the horizontal alignment of the edge mount point with the second node.
 Alignment MultiEdgePositioningLayout.getVerticalAlignment1()
          Get the vertical alignment of the edge mount point with the first node.
 Alignment EdgePositioningLayout.getVerticalAlignment1()
          Get the vertical alignment of the edge mount point with the first node.
 Alignment MultiEdgePositioningLayout.getVerticalAlignment2()
          Get the vertical aligment of the edge mount point with the second node.
 Alignment EdgePositioningLayout.getVerticalAlignment2()
          Get the vertical aligment of the edge mount point with the second node.
 

Methods in prefuse.action.layout.graph with parameters of type Alignment
 void MultiEdgePositioningLayout.setHorizontalAlignment1(Alignment align)
          Set the horizontal alignment of the edge mount point with the first node.
 void EdgePositioningLayout.setHorizontalAlignment1(Alignment align)
          Set the horizontal alignment of the edge mount point with the first node.
 void MultiEdgePositioningLayout.setHorizontalAlignment2(Alignment align)
          Set the horizontal alignment of the edge mount point with the second node.
 void EdgePositioningLayout.setHorizontalAlignment2(Alignment align)
          Set the horizontal alignment of the edge mount point with the second node.
 void MultiEdgePositioningLayout.setVerticalAlignment1(Alignment align)
          Set the vertical alignment of the edge mount point with the first node.
 void EdgePositioningLayout.setVerticalAlignment1(Alignment align)
          Set the vertical alignment of the edge mount point with the first node.
 void MultiEdgePositioningLayout.setVerticalAlignment2(Alignment align)
          Set the vertical alignment of the edge mount point with the second node.
 void EdgePositioningLayout.setVerticalAlignment2(Alignment align)
          Set the vertical alignment of the edge mount point with the second node.
 

Uses of Alignment in prefuse.render
 

Fields in prefuse.render declared as Alignment
protected  Alignment LabelRenderer.m_hImageAlign
           
protected  Alignment LabelRenderer.m_hTextAlign
           
protected  Alignment LabelRenderer.m_imagePos
           
protected  Alignment LabelRenderer.m_vImageAlign
           
protected  Alignment LabelRenderer.m_vTextAlign
           
protected  Alignment LabelRenderer.m_xAlign
           
protected  Alignment EdgeRenderer.m_xAlign1
           
protected  Alignment EdgeRenderer.m_xAlign2
           
protected  Alignment LabelRenderer.m_yAlign
           
protected  Alignment EdgeRenderer.m_yAlign1
           
protected  Alignment EdgeRenderer.m_yAlign2
           
 

Methods in prefuse.render that return Alignment
 Alignment LabelRenderer.getHorizontalAlignment()
          Get the horizontal alignment of this node with respect to its x, y coordinates.
 Alignment EdgeRenderer.getHorizontalAlignment1()
          Get the horizontal alignment of the edge mount point with the first node.
 Alignment EdgeRenderer.getHorizontalAlignment2()
          Get the horizontal alignment of the edge mount point with the second node.
 Alignment LabelRenderer.getHorizontalImageAlignment()
          Get the horizontal image alignment within the layout.
 Alignment LabelRenderer.getHorizontalTextAlignment()
          Get the horizontal text alignment within the layout.
 Alignment LabelRenderer.getImagePosition()
          Get the image position, determining where the image is placed with respect to the text.
 Alignment LabelRenderer.getVerticalAlignment()
          Get the vertical alignment of this node with respect to its x, y coordinates.
 Alignment EdgeRenderer.getVerticalAlignment1()
          Get the vertical alignment of the edge mount point with the first node.
 Alignment EdgeRenderer.getVerticalAlignment2()
          Get the vertical alignment of the edge mount point with the second node.
 Alignment LabelRenderer.getVerticalImageAlignment()
          Get the vertical image alignment within the layout.
 Alignment LabelRenderer.getVerticalTextAlignment()
          Get the vertical text alignment within the layout.
 

Methods in prefuse.render with parameters of type Alignment
protected static void LabelRenderer.getAlignedPoint(java.awt.geom.Point2D p, VisualItem<?> item, double w, double h, Alignment xAlign, Alignment yAlign)
          Helper method, which calculates the top-left co-ordinate of an item given the item's alignment.
 void LabelRenderer.setHorizontalAlignment(Alignment align)
          Set the horizontal alignment of this node with respect to its x, y coordinates.
 void AxisRenderer.setHorizontalAlignment(Alignment xalign)
          Set the horizontal alignment of axis labels.
 void EdgeRenderer.setHorizontalAlignment1(Alignment align)
          Set the horizontal alignment of the edge mount point with the first node.
 void EdgeRenderer.setHorizontalAlignment2(Alignment align)
          Set the horizontal alignment of the edge mount point with the second node.
 void LabelRenderer.setHorizontalImageAlignment(Alignment halign)
          Set the horizontal image alignment within the layout.
 void LabelRenderer.setHorizontalTextAlignment(Alignment halign)
          Set the horizontal text alignment within the layout.
 void LabelRenderer.setImagePosition(Alignment pos)
          Set the image position, determining where the image is placed with respect to the text.
 void LabelRenderer.setVerticalAlignment(Alignment align)
          Set the vertical alignment of this node with respect to its x, y coordinates.
 void AxisRenderer.setVerticalAlignment(Alignment yalign)
          Set the vertical alignment of axis labels.
 void EdgeRenderer.setVerticalAlignment1(Alignment align)
          Set the vertical alignment of the edge mount point with the first node.
 void EdgeRenderer.setVerticalAlignment2(Alignment align)
          Set the vertical alignment of the edge mount point with the second node.
 void LabelRenderer.setVerticalImageAlignment(Alignment valign)
          Set the vertical image alignment within the layout.
 void LabelRenderer.setVerticalTextAlignment(Alignment valign)
          Set the vertical text alignment within the layout.
 

Constructors in prefuse.render with parameters of type Alignment
AxisRenderer(Alignment xalign, Alignment yalign)
          Create a new AxisRenderer.
 

Uses of Alignment in prefuse.util
 

Methods in prefuse.util with parameters of type Alignment
static void GraphicsLib.getAlignedPoint(java.awt.geom.Point2D p, java.awt.geom.Rectangle2D r, Alignment xAlign, Alignment yAlign)
          Helper method, which calculates the top-left co-ordinate of a rectangle given the rectangle's alignment.
 



Copyright © 2008 Regents of the University of California