Subversion Repositories DevTools

Rev

Rev 2151 | Rev 2155 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2151 Rev 2153
Line 25... Line 25...
25
      public string version;
25
      public string version;
26
      public int numberOfRequirements;
26
      public int numberOfRequirements;
27
      public int tag_enum;
27
      public int tag_enum;
28
      public int ea_element_ID;
28
      public int ea_element_ID;
29
      public ReqPro_object parent;
29
      public ReqPro_object parent;
-
 
30
      public string source;
-
 
31
      public string sourceVersion;
-
 
32
      public string sourceSection;
30
 
33
 
31
      // a collection of sub-objects - this is how we can reflect the ReqPro hierarchy,
34
      // a collection of sub-objects - this is how we can reflect the ReqPro hierarchy,
32
      // by adding objects (packages or requirements) to other objects, drilling down
35
      // by adding objects (packages or requirements) to other objects, drilling down
33
      // as required.
36
      // as required.
34
      public ArrayList ReqPro_objects;
37
      public ArrayList ReqPro_objects;
Line 52... Line 55...
52
         level = 0;
55
         level = 0;
53
         treePos = 0;
56
         treePos = 0;
54
         difficulty = "Medium";
57
         difficulty = "Medium";
55
         priority = "Medium";
58
         priority = "Medium";
56
         version = "";
59
         version = "";
-
 
60
         source = null;
-
 
61
         sourceVersion = null;
-
 
62
         sourceSection = null;
57
         filtered = false;
63
         filtered = false;
58
         numberOfRequirements = 0;
64
         numberOfRequirements = 0;
59
         tag_enum = -1;
65
         tag_enum = -1;
60
         ea_element_ID = -1;
66
         ea_element_ID = -1;
61
         ReqPro_objects = new ArrayList();
67
         ReqPro_objects = new ArrayList();
62
         ReqPro_traces = new ArrayList();
68
         ReqPro_traces = new ArrayList();
63
         parent = null;
69
         parent = null;
-
 
70
 
64
      }
71
      }
65
   }
72
   }
66
}
73
}