public TransducerGraph(Edu.Stanford.Nlp.Fsm.TransducerGraph other)
     : this(other, (TransducerGraph.IArcProcessor)null)
 {
 }
 public TransducerGraph(Edu.Stanford.Nlp.Fsm.TransducerGraph other, TransducerGraph.INodeProcessor nodeProcessor)
     : this(other.GetArcs(), other.GetStartNode(), other.GetEndNodes(), null, nodeProcessor)
 {
 }
 /// <exception cref="Java.Lang.CloneNotSupportedException"/>
 public virtual Edu.Stanford.Nlp.Fsm.TransducerGraph Clone()
 {
     base.MemberwiseClone();
     Edu.Stanford.Nlp.Fsm.TransducerGraph result = new Edu.Stanford.Nlp.Fsm.TransducerGraph(this, (TransducerGraph.IArcProcessor)null);
     return(result);
 }