NODE - The type of the nodes that an Arc linksIN - The type of the input language of the transducerOUT - The type of the output language of the transducerpublic static class TransducerGraph.Arc<NODE,IN,OUT> extends Object
| Modifier | Constructor and Description |
|---|---|
protected |
TransducerGraph.Arc(NODE sourceNode,
NODE targetNode) |
protected |
TransducerGraph.Arc(NODE sourceNode,
NODE targetNode,
IN input) |
protected |
TransducerGraph.Arc(NODE sourceNode,
NODE targetNode,
IN input,
OUT output) |
protected |
TransducerGraph.Arc(TransducerGraph.Arc<NODE,IN,OUT> a) |
protected TransducerGraph.Arc(TransducerGraph.Arc<NODE,IN,OUT> a)
public NODE getSourceNode()
public NODE getTargetNode()
public IN getInput()
public OUT getOutput()
public void setSourceNode(NODE o)
public void setTargetNode(NODE o)
public void setInput(IN o)
public void setOutput(OUT o)