Subversion Repositories DevTools

Rev

Rev 2167 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2167 Rev 2173
Line 39... Line 39...
39
      public int numberOfRequirements;
39
      public int numberOfRequirements;
40
 
40
 
41
      // filter control variables
41
      // filter control variables
42
      public bool filtered;
42
      public bool filtered;
43
 
43
 
-
 
44
      // orphanage detection
-
 
45
      public bool matched;
-
 
46
 
44
      // Relationship modelling variables  
47
      // Relationship modelling variables  
45
      public ReqPro_object parent;  // allows us to look upwards
48
      public ReqPro_object parent;  // allows us to look upwards
46
 
49
 
47
      // a collection of sub-objects - this is how we can reflect the ReqPro parent-child hierarchy,
50
      // a collection of sub-objects - this is how we can reflect the ReqPro parent-child hierarchy,
48
      // by adding objects (packages or requirements) to other objects, drilling down
51
      // by adding objects (packages or requirements) to other objects, drilling down
Line 83... Line 86...
83
         parent = null;
86
         parent = null;
84
         iKey = -1;
87
         iKey = -1;
85
         subsystem = "";
88
         subsystem = "";
86
         stability = "";
89
         stability = "";
87
         type = "";
90
         type = "";
-
 
91
         matched = false;
88
      }
92
      }
89
   }
93
   }
90
}
94
}