コード例 #1
0
 /*
  * Constructor
  */
 public GroupNode()
 {
     _priority     = -1;
     _parent       = null;
     _labels       = null;
     _depignore    = NO_IGNORE;
     _dependencies = null;
 }
コード例 #2
0
 public void SetParseVariables(GroupNode root,
                               VariableTable varTable, ArrayList dobjs)
 {
     _root            = root;
     _varTable        = varTable;
     _dependedObjects = dobjs;
     _applianceLabel  = _root.Labels;
 }