Cytoscape 2.6.2 (c) 2006,2007 ISB, MSKCC, UCSD

cytoscape.visual
Class EdgeAppearance

java.lang.Object
  extended by cytoscape.visual.Appearance
      extended by cytoscape.visual.EdgeAppearance

public class EdgeAppearance
extends Appearance

Objects of this class hold data describing the appearance of an Edge.


Constructor Summary
EdgeAppearance()
          Creates a new EdgeAppearance object.
 
Method Summary
 void applyAppearance(EdgeView edgeView, boolean optimizer)
          Deprecated. Use applyAppearance(edgeView) instead - now we always optimize. Will be removed 10/2007
 Object clone()
          Clone.
 Object get(byte b)
          Deprecated. Use Appearance.get(VisualPropertyType) instead. Will be removed 5/2008.
 Color getColor()
          Deprecated. Use Appearance.get(VisualPropertyType) instead. Will be removed 5/2008.
 Font getFont()
          Deprecated. Use Appearance.get(VisualPropertyType) instead. Will be removed 5/2008.
 float getFontSize()
          Deprecated. Use Appearance.get(VisualPropertyType) instead. Will be removed 5/2008.
 String getLabel()
          Deprecated. Use Appearance.get(VisualPropertyType) instead. Will be removed 5/2008.
 Color getLabelColor()
          Deprecated. Use Appearance.get(VisualPropertyType) instead. Will be removed 5/2008.
 LineType getLineType()
          Deprecated. Use Appearance.get(VisualPropertyType) instead. Will be removed 5/2008.
 Float getLineWidth()
          Deprecated. Use Appearance.get(VisualPropertyType) instead. Will be removed 5/2008.
 Arrow getSourceArrow()
          Deprecated. Use Appearance.get(VisualPropertyType) instead. Will be removed 5/2008.
 Arrow getTargetArrow()
          Deprecated. Use Appearance.get(VisualPropertyType) instead. Will be removed 5/2008.
 String getToolTip()
          Deprecated. Use Appearance.get(VisualPropertyType) instead. Will be removed 5/2008.
 void set(byte b, Object o)
          Deprecated. Use Appearance.set(VisualPropertyType,Object) instead. Will be removed 5/2008.
 void setColor(Color c)
          Deprecated. Use Appearance.set(VisualPropertyType,Object) instead. Will be removed 5/2008.
 void setFont(Font f)
          Deprecated. Use Appearance.set(VisualPropertyType,Object) instead. Will be removed 5/2008.
 void setFontSize(float f)
          Deprecated. Use Appearance.set(VisualPropertyType,Object) instead. Will be removed 5/2008.
 void setLabel(String s)
          Deprecated. Use Appearance.set(VisualPropertyType,Object) instead. Will be removed 5/2008.
 void setLabelColor(Color c)
          Deprecated. Use Appearance.set(VisualPropertyType,Object) instead. Will be removed 5/2008.
 void setLineType(LineType lt)
          Deprecated. Use Appearance.set(VisualPropertyType,Object) instead. Will be removed 5/2008.
 void setLineWidth(Float w)
          Deprecated. Use Appearance.set(VisualPropertyType,Object) instead. Will be removed 5/2008.
 void setSourceArrow(Arrow a)
          Deprecated. Use Appearance.set(VisualPropertyType,Object) instead. Will be removed 5/2008.
 void setTargetArrow(Arrow a)
          Deprecated. Use Appearance.set(VisualPropertyType,Object) instead. Will be removed 5/2008.
 void setToolTip(String s)
          Deprecated. Use Appearance.set(VisualPropertyType,Object) instead. Will be removed 5/2008.
 
Methods inherited from class cytoscape.visual.Appearance
applyAppearance, applyAppearance, applyBypass, applyDefaultProperties, copy, get, getDefaultProperties, getDescription, getDescription, getNodeSizeLocked, set, setNodeSizeLocked
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

EdgeAppearance

public EdgeAppearance()
Creates a new EdgeAppearance object.

Method Detail

clone

public Object clone()
Clone.

Overrides:
clone in class Appearance
Returns:
A clone of this Appearance.

getColor

public Color getColor()
Deprecated. Use Appearance.get(VisualPropertyType) instead. Will be removed 5/2008.


setColor

public void setColor(Color c)
Deprecated. Use Appearance.set(VisualPropertyType,Object) instead. Will be removed 5/2008.


getLineType

public LineType getLineType()
Deprecated. Use Appearance.get(VisualPropertyType) instead. Will be removed 5/2008.


getLineWidth

public Float getLineWidth()
Deprecated. Use Appearance.get(VisualPropertyType) instead. Will be removed 5/2008.


setLineType

public void setLineType(LineType lt)
Deprecated. Use Appearance.set(VisualPropertyType,Object) instead. Will be removed 5/2008.


setLineWidth

public void setLineWidth(Float w)
Deprecated. Use Appearance.set(VisualPropertyType,Object) instead. Will be removed 5/2008.


getSourceArrow

public Arrow getSourceArrow()
Deprecated. Use Appearance.get(VisualPropertyType) instead. Will be removed 5/2008.


setSourceArrow

public void setSourceArrow(Arrow a)
Deprecated. Use Appearance.set(VisualPropertyType,Object) instead. Will be removed 5/2008.


getTargetArrow

public Arrow getTargetArrow()
Deprecated. Use Appearance.get(VisualPropertyType) instead. Will be removed 5/2008.


setTargetArrow

public void setTargetArrow(Arrow a)
Deprecated. Use Appearance.set(VisualPropertyType,Object) instead. Will be removed 5/2008.


getLabel

public String getLabel()
Deprecated. Use Appearance.get(VisualPropertyType) instead. Will be removed 5/2008.


setLabel

public void setLabel(String s)
Deprecated. Use Appearance.set(VisualPropertyType,Object) instead. Will be removed 5/2008.


getToolTip

public String getToolTip()
Deprecated. Use Appearance.get(VisualPropertyType) instead. Will be removed 5/2008.


setToolTip

public void setToolTip(String s)
Deprecated. Use Appearance.set(VisualPropertyType,Object) instead. Will be removed 5/2008.


getFont

public Font getFont()
Deprecated. Use Appearance.get(VisualPropertyType) instead. Will be removed 5/2008.


setFont

public void setFont(Font f)
Deprecated. Use Appearance.set(VisualPropertyType,Object) instead. Will be removed 5/2008.


getFontSize

public float getFontSize()
Deprecated. Use Appearance.get(VisualPropertyType) instead. Will be removed 5/2008.


setFontSize

public void setFontSize(float f)
Deprecated. Use Appearance.set(VisualPropertyType,Object) instead. Will be removed 5/2008.


getLabelColor

public Color getLabelColor()
Deprecated. Use Appearance.get(VisualPropertyType) instead. Will be removed 5/2008.


setLabelColor

public void setLabelColor(Color c)
Deprecated. Use Appearance.set(VisualPropertyType,Object) instead. Will be removed 5/2008.


applyAppearance

public void applyAppearance(EdgeView edgeView,
                            boolean optimizer)
Deprecated. Use applyAppearance(edgeView) instead - now we always optimize. Will be removed 10/2007


get

public Object get(byte b)
Deprecated. Use Appearance.get(VisualPropertyType) instead. Will be removed 5/2008.


set

public void set(byte b,
                Object o)
Deprecated. Use Appearance.set(VisualPropertyType,Object) instead. Will be removed 5/2008.


www.cytoscape.org