Наследование: DataDictionary.ReqRelated
 public virtual void visit(Procedure obj, bool visitSubNodes)
 {
     visit ((ReqRelated) obj, false);
     if (visitSubNodes){
     IXmlBBase[] Subs  = acceptor.subElements((IXmlBBase)obj);
     if (Subs != null){
     for (int i=0; i<Subs.Length; i++) {
       dispatch(Subs[i], true);
     } // If
     } // If
     }
 }
Пример #2
0
        public override void visit(Procedure obj, bool visitSubNodes)
        {
            obj.setX(0);
            obj.setY(0);
            obj.setWidth(0);
            obj.setHeight(0);
            obj.setHidden(false);
            obj.setPinned(false);

            base.visit(obj, visitSubNodes);
        }
 public virtual void visit(Procedure obj)
 {
     visit(obj, true);
 }
 public void insertProcedures(int idx, Procedure el,Lock aLock)
 {
     __setDirty(true);
       allProcedures().Insert (idx, el);
     NotifyControllers(aLock);
 }
 public void appendProcedures(Lock aLock,Procedure el)
 {
     __setDirty(true);
       el.__setDirty(true);
       allProcedures().Add(el);
       acceptor.connectSon (this, el);
     NotifyControllers(aLock);
 }
 public void copyTo(Procedure other)
 {
     base.copyTo(other);
     other.aStateMachine = aStateMachine;
     other.aRules = aRules;
     other.aParameters = aParameters;
     other.aWidth = aWidth;
     other.aHeight = aHeight;
     other.aX = aX;
     other.aY = aY;
     other.aHidden = aHidden;
     other.aPinned = aPinned;
 }
 public void copyTo(Procedure other)
 {
     base.copyTo(other);
     other.aStateMachine = aStateMachine;
     other.aRules = aRules;
     other.aParameters = aParameters;
 }