Inheritance: DataDictionary.Namable
 public virtual void visit(Shortcut obj, bool visitSubNodes)
 {
     visit ((Namable) 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
     }
 }
 public virtual void visit(Shortcut obj)
 {
     visit(obj, true);
 }
 public void appendShortcuts(Lock aLock,Shortcut el)
 {
     __setDirty(true);
       el.__setDirty(true);
       allShortcuts().Add(el);
       acceptor.connectSon (this, el);
     NotifyControllers(aLock);
 }
 public void insertShortcuts(int idx, Shortcut el,Lock aLock)
 {
     __setDirty(true);
       allShortcuts().Insert (idx, el);
     NotifyControllers(aLock);
 }
 public void copyTo(Shortcut other)
 {
     base.copyTo(other);
     other.aShortcutName = aShortcutName;
 }