Subversion Repositories DevTools

Rev

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

Rev 2141 Rev 2143
Line 23... Line 23...
23
      public string difficulty;
23
      public string difficulty;
24
      public string priority;
24
      public string priority;
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;
-
 
29
      public ReqPro_object parent;
28
 
30
 
29
      // a collection of sub-objects - this is how we can reflect the ReqPro hierarchy,
31
      // a collection of sub-objects - this is how we can reflect the ReqPro hierarchy,
30
      // by adding objects (packages or requirements) to other objects, drilling down
32
      // by adding objects (packages or requirements) to other objects, drilling down
31
      // as required.
33
      // as required.
32
      public ArrayList ReqPro_objects;
34
      public ArrayList ReqPro_objects;
33
 
35
 
-
 
36
      // a collection of traced-to objects. 
-
 
37
      public ArrayList ReqPro_traces;
-
 
38
 
34
      /// <summary>
39
      /// <summary>
35
      /// Constructor logic
40
      /// Constructor logic
36
      /// </summary>
41
      /// </summary>
37
		public ReqPro_object()
42
		public ReqPro_object()
38
		{
43
		{
Line 50... Line 55...
50
         priority = "";
55
         priority = "";
51
         version = "";
56
         version = "";
52
         filtered = false;
57
         filtered = false;
53
         numberOfRequirements = 0;
58
         numberOfRequirements = 0;
54
         tag_enum = -1;
59
         tag_enum = -1;
-
 
60
         ea_element_ID = -1;
55
         ReqPro_objects = new ArrayList();
61
         ReqPro_objects = new ArrayList();
-
 
62
         ReqPro_traces = new ArrayList();
-
 
63
         parent = null;
56
		}
64
		}
57
 
65
 
58
 
66
 
59
	}
67
	}
60
}
68
}