Subversion Repositories DevTools

Rev

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

Rev 2153 Rev 2155
Line 12... Line 12...
12
      public bool isPackage;
12
      public bool isPackage;
13
      public bool isRequirement;
13
      public bool isRequirement;
14
      public string name;
14
      public string name;
15
      public string text;
15
      public string text;
16
      public string guid;
16
      public string guid;
-
 
17
      public string tag;         // eg. CR23, SPR1, SPR2.5, etc
-
 
18
      public string status;      // eg Approved, Proposed, etc
17
      public string tag;
19
      public string subsystem;   
18
      public string status;
20
      public string stability;
19
      public int level;
21
      public int level;
20
      public int treePos;
22
      public int treePos;
21
      public bool filtered;
23
      public bool filtered;
22
      public string versionDateTime;
24
      public string versionDateTime;
23
      public string difficulty;
25
      public string difficulty;
24
      public string priority;
26
      public string priority;
25
      public string version;
27
      public string version;     // to be deprecated
26
      public int numberOfRequirements;
28
      public int numberOfRequirements;
27
      public int tag_enum;
29
      public int tag_enum;
28
      public int ea_element_ID;
30
      public int ea_element_ID;
29
      public ReqPro_object parent;
31
      public ReqPro_object parent;
30
      public string source;
32
      public string source;
31
      public string sourceVersion;
33
      public string sourceVersion;
32
      public string sourceSection;
34
      public string sourceSection;
-
 
35
      public int iKey;
-
 
36
      public string type;  // eg. functional, performance, non-functional, etc
33
 
37
 
34
      // a collection of sub-objects - this is how we can reflect the ReqPro hierarchy,
38
      // a collection of sub-objects - this is how we can reflect the ReqPro hierarchy,
35
      // by adding objects (packages or requirements) to other objects, drilling down
39
      // by adding objects (packages or requirements) to other objects, drilling down
36
      // as required.
40
      // as required.
37
      public ArrayList ReqPro_objects;
41
      public ArrayList ReqPro_objects;
Line 55... Line 59...
55
         level = 0;
59
         level = 0;
56
         treePos = 0;
60
         treePos = 0;
57
         difficulty = "Medium";
61
         difficulty = "Medium";
58
         priority = "Medium";
62
         priority = "Medium";
59
         version = "";
63
         version = "";
60
         source = null;
64
         source = "";
61
         sourceVersion = null;
65
         sourceVersion = "";
62
         sourceSection = null;
66
         sourceSection = "";
63
         filtered = false;
67
         filtered = false;
64
         numberOfRequirements = 0;
68
         numberOfRequirements = 0;
65
         tag_enum = -1;
69
         tag_enum = -1;
66
         ea_element_ID = -1;
70
         ea_element_ID = -1;
67
         ReqPro_objects = new ArrayList();
71
         ReqPro_objects = new ArrayList();
68
         ReqPro_traces = new ArrayList();
72
         ReqPro_traces = new ArrayList();
69
         parent = null;
73
         parent = null;
70
 
-
 
-
 
74
         iKey = -1;
-
 
75
         subsystem = "";
-
 
76
         stability = "";
-
 
77
         type = "";
71
      }
78
      }
72
   }
79
   }
73
}
80
}