예제 #1
0
        public override void makeClonned(int maxKnot, string cloneValue)
        {
            Conduction clonned = new Conduction(name + clonnedSuffix, knots, value);
            Conduction clone   = new Conduction(name, knots, cloneValue);

            cloneElement    = clone;
            clonnedElements = new List <Element>()
            {
                clonned, clone
            };
        }
예제 #2
0
 public override void makeClonned(int maxKnot, string cloneValue)
 {
     Conduction clonned = new Conduction(name + clonnedSuffix, knots, value);
     Conduction clone = new Conduction(name, knots, cloneValue);
     cloneElement = clone;
     clonnedElements = new List<Element>() { clonned, clone };
 }
예제 #3
0
 public Conduction(Conduction element) : base(element)
 {
 }
예제 #4
0
 public Conduction(Conduction element)
     : base(element)
 {
 }