Пример #1
0
        public override BaseElement Clone()
        {
            SequenceFlow clone = new SequenceFlow();

            clone.SetValues(this);
            return(clone);
        }
Пример #2
0
 public void SetValues(SequenceFlow otherFlow)
 {
     base.SetValues(otherFlow);
     conditionExpression = otherFlow.ConditionExpression;
     sourceRef           = otherFlow.SourceRef;
     targetRef           = otherFlow.TargetRef;
     skipExpression      = otherFlow.SkipExpression;
 }