org.drools.examples.benchmarks.waltz.model
Class Edge
java.lang.Object
org.drools.examples.benchmarks.waltz.model.Edge
- public class Edge
- extends java.lang.Object
Edges are like lines except that they can be joined,
permanently labelled and plotted.
(literalize edge p1 p2 joined label plotted)
-

Constructor Summary |
Edge(int p1,
int p2,
boolean joined)
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Edge
public Edge(int p1,
int p2,
boolean joined)
getP1
public int getP1()
getP2
public int getP2()
isJoined
public boolean isJoined()
getLabel
public java.lang.String getLabel()
isPlotted
public boolean isPlotted()
setJoined
public void setJoined(boolean joined)
setLabel
public void setLabel(java.lang.String label)
setPlotted
public void setPlotted(boolean plotted)
toString
public java.lang.String toString()