Subversion Repositories DevTools

Rev

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

Rev 2088 Rev 2094
Line 19... Line 19...
19
      public string fromToTableTitle = null;  // This one is optional
19
      public string fromToTableTitle = null;  // This one is optional
20
      public string fromColumnTitle = null;
20
      public string fromColumnTitle = null;
21
      public ArrayList fromElementTypes = null;
21
      public ArrayList fromElementTypes = null;
22
      public bool fromPackageRecursion = true;
22
      public bool fromPackageRecursion = true;
23
      public EA.Package fromPackage = null;
23
      public EA.Package fromPackage = null;
-
 
24
      public bool fromPackageTrimming = false;
24
 
25
 
25
      public string toIntroText = null;       // This one is optional
26
      public string toIntroText = null;       // This one is optional
26
      public string toPackageGUID = null;
27
      public string toPackageGUID = null;
27
      public string toFromTableTitle = null;  // This one is optional
28
      public string toFromTableTitle = null;  // This one is optional
28
      public string toColumnTitle = null;
29
      public string toColumnTitle = null;
29
      public ArrayList toElementTypes = null;
30
      public ArrayList toElementTypes = null;
30
      public bool toPackageRecursion = true;
31
      public bool toPackageRecursion = true;
31
      public EA.Package toPackage = null;
32
      public EA.Package toPackage = null;
-
 
33
      public bool toPackageTrimming = false;
-
 
34
 
-
 
35
      
32
 
36
 
33
      private string [] options_string = null;
37
      private string [] options_string = null;
34
 
38
 
35
 
39
 
36
 
40
 
Line 47... Line 51...
47
         fromPackageGUID = null;
51
         fromPackageGUID = null;
48
         fromToTableTitle = null;
52
         fromToTableTitle = null;
49
         fromColumnTitle = null;
53
         fromColumnTitle = null;
50
         fromElementTypes.Clear();
54
         fromElementTypes.Clear();
51
         fromPackageRecursion = true;
55
         fromPackageRecursion = true;
-
 
56
         fromPackageTrimming = false;
52
         fromPackage = null;
57
         fromPackage = null;
53
         toIntroText = null;
58
         toIntroText = null;
54
         toPackageGUID = null;
59
         toPackageGUID = null;
55
         toFromTableTitle = null;
60
         toFromTableTitle = null;
56
         toColumnTitle = null;
61
         toColumnTitle = null;
57
         toElementTypes.Clear();
62
         toElementTypes.Clear();
58
         toPackageRecursion = true;
63
         toPackageRecursion = true;
-
 
64
         toPackageTrimming = false;
59
         toPackage = null;
65
         toPackage = null;
60
      }
66
      }
61
 
67
 
62
 
68
 
63
      public bool processRelationshipMatrixOptions(EA.Element theElement)
69
      public bool processRelationshipMatrixOptions(EA.Element theElement)
Line 96... Line 102...
96
               }
102
               }
97
               else if (s.StartsWith("fromPackageRecursion")) 
103
               else if (s.StartsWith("fromPackageRecursion")) 
98
               {
104
               {
99
                  fromPackageRecursion = EA_Utils.options.getOptionValue(s, fromPackageRecursion);
105
                  fromPackageRecursion = EA_Utils.options.getOptionValue(s, fromPackageRecursion);
100
               }
106
               }
-
 
107
               else if (s.StartsWith("fromPackageTrimming"))
-
 
108
               {
-
 
109
                  fromPackageTrimming = EA_Utils.options.getOptionValue(s, fromPackageTrimming);
-
 
110
               }
101
               else if (s.StartsWith("fromPackage")) 
111
               else if (s.StartsWith("fromPackage")) 
102
               {
112
               {
103
                  fromPackageGUID = EA_Utils.options.getOptionValue(s, fromPackageGUID);
113
                  fromPackageGUID = EA_Utils.options.getOptionValue(s, fromPackageGUID);
104
               }
114
               }
105
               else if (s.StartsWith("fromElementType")) 
115
               else if (s.StartsWith("fromElementType")) 
Line 127... Line 137...
127
               }
137
               }
128
               else if (s.StartsWith("toPackageRecursion")) 
138
               else if (s.StartsWith("toPackageRecursion")) 
129
               {
139
               {
130
                  toPackageRecursion = EA_Utils.options.getOptionValue(s, toPackageRecursion);
140
                  toPackageRecursion = EA_Utils.options.getOptionValue(s, toPackageRecursion);
131
               }
141
               }
-
 
142
               else if (s.StartsWith("toPackageTrimming")) 
-
 
143
               {
-
 
144
                  toPackageTrimming = EA_Utils.options.getOptionValue(s, toPackageTrimming);
-
 
145
               }               
132
               else if (s.StartsWith("toPackage")) 
146
               else if (s.StartsWith("toPackage")) 
133
               {
147
               {
134
                  toPackageGUID = EA_Utils.options.getOptionValue(s, toPackageGUID);
148
                  toPackageGUID = EA_Utils.options.getOptionValue(s, toPackageGUID);
135
               }
149
               }
136
               else if (s.StartsWith("toElementType")) 
150
               else if (s.StartsWith("toElementType")) 
Line 221... Line 235...
221
         + "fromColumnTitle=\r\n"
235
         + "fromColumnTitle=\r\n"
222
         + "fromPackage=\r\n"
236
         + "fromPackage=\r\n"
223
         + "fromElementType=\r\n"
237
         + "fromElementType=\r\n"
224
         + "fromElementType=\r\n"
238
         + "fromElementType=\r\n"
225
         + "fromPackageRecursion=true\r\n"
239
         + "fromPackageRecursion=true\r\n"
-
 
240
         + "fromPackageTrimming=false\r\n"
226
         + "toFromTableTitle=\r\n"
241
         + "toFromTableTitle=\r\n"
227
         + "toIntroText=\r\n"
242
         + "toIntroText=\r\n"
228
         + "toColumnTitle=\r\n"
243
         + "toColumnTitle=\r\n"
229
         + "toPackage=\r\n"
244
         + "toPackage=\r\n"
230
         + "toElementType=\r\n"
245
         + "toElementType=\r\n"
231
         + "toPackageRecursion=true\r\n";
246
         + "toPackageRecursion=true\r\n"
-
 
247
         + "toPackageTrimming=false\r\n";
232
      }
248
      }
233
 
249
 
234
 
250
 
235
	}
251
	}
236
}
252
}