示例#1
0
文件: MgTree.cs 项目: rinavin/RCJS
 internal NodeFinder(MgTreeBase enclosingInstance, String mgValue, bool isNull, StorageAttribute type)
 {
     _enclosingInstance = enclosingInstance;
     _mgValue           = mgValue;
     _isNull            = isNull;
     _type  = type;
     NodeId = NODE_NOT_FOUND;
     _field = (Field)(_enclosingInstance.Task.getForm().getTreeCtrl().getNodeIdField());
 }
示例#2
0
文件: MgTree.cs 项目: rinavin/RCJS
 internal NodeCreator(MgTreeBase enclosingInstance)
 {
     _enclosingInstance = enclosingInstance;
 }
示例#3
0
文件: MgTree.cs 项目: rinavin/RCJS
            }                                // record id

            internal Node(MgTreeBase enclosingInstance, NodeBase parent, NodeBase afterSibling)
                : base(enclosingInstance, parent, afterSibling)
            {
            }