GraphLab Project

graphlab.graph.old
Class GStroke

java.lang.Object
  extended by graphlab.graph.old.GStroke
All Implemented Interfaces:
FromStringProvider<GStroke>, java.io.Serializable

public class GStroke
extends java.lang.Object
implements java.io.Serializable, FromStringProvider<GStroke>

User: root

See Also:
Serialized Form

Field Summary
static GStroke dashed
           
static GStroke dashed_dashed_dotted
           
static GStroke dashed_dotted
           
static GStroke dashed_dotted_dotted
           
static GStroke dotted
           
static GStroke empty
           
 java.lang.String name
           
static GStroke simple
           
static GStroke solid
           
 java.awt.BasicStroke stroke
           
static java.lang.String STROKE
           
static GStroke strong
           
 
Constructor Summary
GStroke()
           
GStroke(java.lang.String name, float[] dashInfo)
           
GStroke(java.lang.String name, int w, float[] dashInfo)
           
 
Method Summary
 GStroke fromString(java.lang.String data)
          just changes the stroke of the graphics if nesecary
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

empty

public static GStroke empty

simple

public static GStroke simple

solid

public static GStroke solid

strong

public static GStroke strong

dashed

public static GStroke dashed

dotted

public static GStroke dotted

dashed_dotted

public static GStroke dashed_dotted

dashed_dotted_dotted

public static GStroke dashed_dotted_dotted

dashed_dashed_dotted

public static GStroke dashed_dashed_dotted

name

public java.lang.String name

stroke

public java.awt.BasicStroke stroke

STROKE

public static final java.lang.String STROKE
See Also:
Constant Field Values
Constructor Detail

GStroke

public GStroke(java.lang.String name,
               float[] dashInfo)

GStroke

public GStroke(java.lang.String name,
               int w,
               float[] dashInfo)

GStroke

public GStroke()
Method Detail

fromString

public GStroke fromString(java.lang.String data)
just changes the stroke of the graphics if nesecary

Specified by:
fromString in interface FromStringProvider<GStroke>

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object

GraphLab Project