Interface Edge
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
EdgeImpl
public interface Edge extends java.io.SerializableThe Interface Edge.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description doublegetRadius()Gets the radius.EdgeTypegetType()Gets the type.java.lang.StringgetValue()Gets the value.voidsetRadius(double radius)Sets the radius.voidsetType(EdgeType type)Sets the type.voidsetValue(java.lang.String value)Sets the value.
-
-
-
Method Detail
-
setType
void setType(EdgeType type)
Sets the type.- Parameters:
type- the new type- See Also:
EdgeType
-
getRadius
double getRadius()
Gets the radius.- Returns:
- the radius
-
setRadius
void setRadius(double radius)
Sets the radius.- Parameters:
radius- the new radius
-
getValue
java.lang.String getValue()
Gets the value.- Returns:
- the value
-
setValue
void setValue(java.lang.String value)
Sets the value.- Parameters:
value- the new value
-
-