001 /** 002 * Copyright 2005-2013 The Kuali Foundation 003 * 004 * Licensed under the Educational Community License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.opensource.org/licenses/ecl2.php 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016 package edu.sampleu.demo.kitchensink; 017 018 import org.apache.commons.lang.RandomStringUtils; 019 import org.apache.commons.lang.StringUtils; 020 import org.kuali.rice.core.api.CoreApiServiceLocator; 021 import org.kuali.rice.core.api.datetime.DateTimeService; 022 import org.kuali.rice.core.api.util.tree.Node; 023 import org.kuali.rice.core.api.util.tree.Tree; 024 import org.kuali.rice.kim.api.identity.Person; 025 import org.kuali.rice.kim.api.services.KimApiServiceLocator; 026 import org.kuali.rice.krad.web.form.UifFormBase; 027 import org.springframework.web.multipart.MultipartFile; 028 029 import javax.servlet.http.HttpServletRequest; 030 import java.text.DateFormat; 031 import java.text.SimpleDateFormat; 032 import java.util.ArrayList; 033 import java.util.Arrays; 034 import java.util.Date; 035 import java.util.HashMap; 036 import java.util.List; 037 import java.util.Map; 038 039 /** 040 * Form for Test UI Page 041 * 042 * @author Kuali Rice Team (rice.collab@kuali.org) 043 */ 044 public class UifComponentsTestForm extends UifFormBase { 045 private static final long serialVersionUID = -7525378097732916418L; 046 047 private String field1; 048 private String field2; 049 private String field3; 050 private String field4; 051 private String field5; 052 private String field6; 053 private String field7; 054 private String field8; 055 private String field9; 056 private String field10; 057 private String field11; 058 private String field12; 059 private String field13; 060 private String field14; 061 private String field15; 062 private String field16; 063 private String field17; 064 private String field18; 065 private String field19; 066 private String field20; 067 private String field21; 068 private String field22; 069 private String field23; 070 private String field24; 071 private String field25; 072 private String field26; 073 private String field27; 074 private String field28; 075 private String field29; 076 private String field30; 077 private String field31; 078 private String field32; 079 private String field33; 080 private String field34; 081 private String field35; 082 private String field36; 083 private String field37; 084 private String field38; 085 private String field39; 086 private String field40; 087 private String field41; 088 private String field42; 089 private String field43; 090 private String field44; 091 private String field45; 092 private String field46; 093 private String field47 = ""; 094 private String field48; 095 private String field49; 096 private String field50; 097 private String field51; 098 private String field52; 099 private String field53; 100 private String field54; 101 private String field55; 102 private String field56; 103 private String field57; 104 private String field58; 105 private String field59; 106 private String field60; 107 private String field61; 108 private String field62; 109 private String field63; 110 private String field64; 111 private String field65; 112 private String field66; 113 private String field67; 114 private String field68; 115 private String field69; 116 private String field70; 117 private String field71; 118 private String field72; 119 private String field73; 120 private String field74; 121 private String field75; 122 private String field76; 123 private String field77; 124 private String field78; 125 private String field79; 126 private String field80; 127 private String field81; 128 private String field82; 129 private String field83; 130 private String field84; 131 private String field85; 132 private String field86; 133 private String field87; 134 private String field88; 135 private String field89; 136 private String field90; 137 private String field91; 138 private String field92; 139 private String field100; 140 private String field101; 141 private String field102; 142 private String field103; 143 private String field104; 144 private String field105; 145 private String field106; 146 private String field107; 147 private String field108; 148 private String field109; 149 private String field110; 150 private String field111; 151 private String field112; 152 private String field113; 153 private List<String> field114; 154 private List<String> field115; 155 private List<String> field116; 156 private String field117; 157 private String field118; 158 private String field119; 159 private List<String> field120; 160 private String field121; 161 private String field122; 162 private String field123; 163 private String field124; 164 private String field125; 165 private String field126; 166 private String field127; 167 private String field128; 168 private String field129; 169 private String field130; 170 private Integer field131; 171 private String field132; 172 private String field133; 173 private String field134 = "triggered by focus or and mouse over"; 174 175 private String richMessageField = "[color=green][b]Message[/b][/color]"; 176 private String richMessageField2 = 177 "Form Message with input specified by id-[id=Demo-SampleMessageInput3] and inlineComponent index number-[0]"; 178 private String testValueField = "Sample Data"; 179 180 private String testPersonId; 181 private Person testPerson; 182 183 private String gField1; 184 private String gField2; 185 private String gField3; 186 187 private String mField1 = "SecretInfo555"; 188 private String mField2 = "SecretInfo111"; 189 private String mField3 = "SecretInfo222"; 190 private String fakeTotal = "123(server value)"; 191 192 private List<String> stringList1; 193 private List<String> stringList2; 194 private List<String> stringList3 = new ArrayList<String>(Arrays.asList("String1", "String2", "String3", "String4")); 195 private List<String> stringList4 = new ArrayList<String>(Arrays.asList("String1", "String2", "String3", "String4")); 196 private List<Integer> intList = new ArrayList<Integer>(Arrays.asList(1, 2, 3, 4)); 197 private List<Double> doubleList = new ArrayList<Double>(Arrays.asList(1.1, 2.2, 3.3, 4.4)); 198 private List<Date> dateList; 199 200 private MultipartFile fileUpload; 201 202 private UITestObject uiTestObject; 203 204 private List<UITestObject> list1 = new ArrayList<UITestObject>(); 205 private List<UITestObject> list2 = new ArrayList<UITestObject>(); 206 private List<UITestObject> list3 = new ArrayList<UITestObject>(); 207 private List<UITestObject> list4 = new ArrayList<UITestObject>(); 208 private List<UITestObject> list5 = new ArrayList<UITestObject>(); 209 private List<UITestObject> list6 = new ArrayList<UITestObject>(); 210 private List<UITestObject> emptyList = new ArrayList<UITestObject>(); 211 private List<UITestObject> groupedList1 = new ArrayList<UITestObject>(); 212 private List<UITestObject> groupedList2 = new ArrayList<UITestObject>(); 213 private List<UITestObject> groupedList3 = new ArrayList<UITestObject>(); 214 private List<UITestObject> doubleGroupedList = new ArrayList<UITestObject>(); 215 private List<UITestObject> list1generated = new ArrayList<UITestObject>(); 216 private List<UITestObject> list2generated = new ArrayList<UITestObject>(); 217 private List<UITestObject> list3generated = new ArrayList<UITestObject>(); 218 private List<TimeInfo> listTimeInfo = new ArrayList<TimeInfo>(); 219 private List<DayEvent> dayEvents = new ArrayList<DayEvent>(); 220 221 private Tree<String, String> tree1 = new Tree<String, String>(); 222 private Tree<UITestObject, String> tree2 = new Tree<UITestObject, String>(); 223 224 private boolean bField1; 225 private boolean bField2; 226 private boolean bField3; 227 228 private Date date1; 229 private Date date2; 230 private Date date3; 231 private Date date4; 232 private Date date5; 233 private Date date6; 234 private Date date7; 235 236 private Map<String, Object> remoteFieldValuesMap; 237 private Map<String, Object> remoteFieldValuesMap2; 238 239 private String sourceCodeField; 240 241 public UifComponentsTestForm() { 242 super(); 243 244 uiTestObject = new UITestObject("Foo", "FooBar", "FooBear", "FooRacket"); 245 246 sourceCodeField = "<bean parent=\"Uif-PrimaryActionButton\" p:actionLabel=\"Save\" p:methodToCall=\"performSave\">\n" 247 + "  <property name=\"actionImage\">\n" 248 + "    <bean parent=\"Uif-Image\"\n" 249 + "      p:source=\"@{#ConfigProperties['krad.externalizable.images.url']}searchicon.gif\"\n" 250 + "      p:actionImageLocation=\"RIGHT\"/>\n" 251 + "  </property>\n" 252 + "</bean>"; 253 254 list1.add(new UITestObject("5", "6", "7", "8", new UITestObject("1","1","1","1"))); 255 UITestObject obj1 = new UITestObject("1", "2", "3", "4", new UITestObject("1","1","1","1")); 256 obj1.setStringList(null); 257 list1.add(obj1); 258 UITestObject obj2 = new UITestObject("9", "10", "11", "12", new UITestObject("1","1","1","1")); 259 obj2.setStringList(new ArrayList<String>()); 260 list1.add(obj2); 261 list1.add(new UITestObject("13", "14", "15", "16", new UITestObject("1","1","1","1"))); 262 list1.add(new UITestObject("17", "18", "19", "20", new UITestObject("1","1","1","1"))); 263 list1.add(new UITestObject("5", "6", "7", "8", new UITestObject("1","1","1","1"))); 264 list1.add(new UITestObject("1", "2", "3", "4", new UITestObject("1","1","1","1"))); 265 list1.add(new UITestObject("9", "10", "11", "12", new UITestObject("1","1","1","1"))); 266 list1.add(new UITestObject("13", "14", "15", "16", new UITestObject("1","1","1","1"))); 267 list1.add(new UITestObject("213", "143", "151", "126", new UITestObject("1","1","1","1"))); 268 list1.add(new UITestObject("133", "144", "155", "156", new UITestObject("1","1","1","1"))); 269 270 list2.add(new UITestObject("A", "B", "C", "D")); 271 list2.add(new UITestObject("1", "2", "3", "4")); 272 list2.add(new UITestObject("W", "X", "Y", "Z")); 273 list2.add(new UITestObject("a", "b", "c", "d")); 274 list2.add(new UITestObject("a", "s", "d", "f")); 275 276 list3.add(new UITestObject("A", "B", "C", "D")); 277 list3.get(0).getSubList().add(new UITestObject("A", "B", "C", "D")); 278 list3.get(0).getSubList().add(new UITestObject("1", "2", "3", "4")); 279 list3.get(0).getSubList().add(new UITestObject("W", "X", "Y", "Z")); 280 list3.add(new UITestObject("1", "2", "3", "4")); 281 list3.get(1).getSubList().add(new UITestObject("A", "B", "C", "D")); 282 list3.get(1).getSubList().add(new UITestObject("1", "2", "3", "4")); 283 list3.add(new UITestObject("W", "X", "Y", "Z")); 284 list3.get(2).getSubList().add(new UITestObject("W", "X", "Y", "Z")); 285 286 list4.add(new UITestObject("A", "B", "C", "D")); 287 list4.get(0).getSubList().add(new UITestObject("1", "B", "C", "D", new UITestObject("1","1","1","1"))); 288 list4.get(0).getSubList().add(new UITestObject("2", "2", "3", "4", new UITestObject("1","1","1","1"))); 289 list4.get(0).getSubList().add(new UITestObject("3", "X", "Y", "Z", new UITestObject("1","1","1","1"))); 290 list4.add(new UITestObject("1", "2", "3", "4")); 291 list4.get(1).getSubList().add(new UITestObject("4", "b", "C", "D", new UITestObject("$50.00","1","1","1"))); 292 /*list4.get(1).getSubList().add(new UITestObject("5", "s", "D", "F", new UITestObject("1","1","1","1")));*/ 293 294 //triple nesting 295 list5.add(new UITestObject("a", "a", "a", "a")); 296 list5.get(0).getSubList().add(new UITestObject("A", "B", "C", "D")); 297 list5.get(0).getSubList().get(0).getSubList().add(new UITestObject("a3", "3", "3", "3")); 298 list5.get(0).getSubList().get(0).getSubList().add(new UITestObject("a3", "3", "3", "3")); 299 list5.get(0).getSubList().add(new UITestObject("1", "2", "3", "4")); 300 list5.get(0).getSubList().get(1).getSubList().add(new UITestObject("b3", "3", "3", "3")); 301 list5.get(0).getSubList().get(1).getSubList().add(new UITestObject("b3", "3", "3", "3")); 302 list5.get(0).getSubList().get(1).getSubList().add(new UITestObject("b3", "3", "3", "3")); 303 list5.add(new UITestObject("b", "b", "b", "b")); 304 list5.get(1).getSubList().add(new UITestObject("a", "b", "C", "D")); 305 list5.get(1).getSubList().get(0).getSubList().add(new UITestObject("a23", "3", "3", "3")); 306 list5.get(1).getSubList().get(0).getSubList().add(new UITestObject("a23", "3", "3", "3")); 307 list5.get(1).getSubList().add(new UITestObject("a", "s", "D", "F")); 308 list5.get(1).getSubList().get(1).getSubList().add(new UITestObject("b23", "3", "3", "3")); 309 list5.get(1).getSubList().get(1).getSubList().add(new UITestObject("b23", "3", "3", "3")); 310 311 groupedList1.add(new UITestObject("A", "100", "200", "300")); 312 groupedList1.add(new UITestObject("A", "101", "200", "300")); 313 groupedList1.add(new UITestObject("A", "102", "200", "300")); 314 groupedList1.add(new UITestObject("A", "103", "200", "300")); 315 groupedList1.add(new UITestObject("A", "104", "200", "300")); 316 317 groupedList1.add(new UITestObject("B", "100", "200", "300")); 318 groupedList1.add(new UITestObject("B", "101", "200", "300")); 319 groupedList1.add(new UITestObject("B", "102", "200", "300")); 320 321 groupedList1.add(new UITestObject("C", "100", "200", "300")); 322 groupedList1.add(new UITestObject("C", "101", "200", "300")); 323 groupedList1.add(new UITestObject("C", "102", "200", "300")); 324 groupedList1.add(new UITestObject("C", "103", "200", "300")); 325 326 groupedList1.add(new UITestObject("D", "100", "200", "300")); 327 groupedList1.add(new UITestObject("D", "101", "200", "300")); 328 groupedList1.add(new UITestObject("D", "102", "200", "300")); 329 groupedList1.add(new UITestObject("D", "103", "200", "300")); 330 groupedList1.add(new UITestObject("D", "100", "200", "300")); 331 groupedList1.add(new UITestObject("D", "101", "200", "300")); 332 groupedList1.add(new UITestObject("D", "102", "200", "300")); 333 groupedList1.add(new UITestObject("D", "103", "200", "300")); 334 groupedList1.add(new UITestObject("D", "100", "200", "300")); 335 groupedList1.add(new UITestObject("D", "101", "200", "300")); 336 groupedList1.add(new UITestObject("D", "102", "200", "300")); 337 groupedList1.add(new UITestObject("D", "103", "200", "300")); 338 groupedList1.add(new UITestObject("D", "100", "200", "300")); 339 groupedList1.add(new UITestObject("D", "101", "200", "300")); 340 groupedList1.add(new UITestObject("D", "102", "200", "300")); 341 groupedList1.add(new UITestObject("D", "103", "200", "300")); 342 groupedList1.add(new UITestObject("D", "100", "200", "300")); 343 groupedList1.add(new UITestObject("D", "101", "200", "300")); 344 groupedList1.add(new UITestObject("D", "102", "200", "300")); 345 groupedList1.add(new UITestObject("D", "103", "200", "300")); 346 groupedList1.add(new UITestObject("D", "100", "200", "300")); 347 groupedList1.add(new UITestObject("D", "101", "200", "300")); 348 groupedList1.add(new UITestObject("D", "102", "200", "300")); 349 groupedList1.add(new UITestObject("D", "103", "200", "300")); 350 351 groupedList2.addAll(groupedList1); 352 groupedList3.addAll(groupedList1); 353 354 doubleGroupedList.add(new UITestObject("Fall", "2001", "AAA123", "2")); 355 doubleGroupedList.add(new UITestObject("Fall", "2001", "BBB123", "3")); 356 doubleGroupedList.add(new UITestObject("Fall", "2001", "CCC123", "4")); 357 doubleGroupedList.add(new UITestObject("Fall", "2001", "DDD123", "3")); 358 359 doubleGroupedList.add(new UITestObject("Fall", "2002", "AAA123", "3")); 360 doubleGroupedList.add(new UITestObject("Fall", "2002", "BBB123", "2")); 361 doubleGroupedList.add(new UITestObject("Fall", "2002", "CCC123", "3")); 362 363 doubleGroupedList.add(new UITestObject("Fall", "2003", "AAA123", "3")); 364 doubleGroupedList.add(new UITestObject("Fall", "2003", "CCC123", "3")); 365 366 doubleGroupedList.add(new UITestObject("Spring", "2001", "AAA123", "3")); 367 doubleGroupedList.add(new UITestObject("Spring", "2001", "BBB123", "3")); 368 doubleGroupedList.add(new UITestObject("Spring", "2001", "CCC123", "3")); 369 370 doubleGroupedList.add(new UITestObject("Spring", "2002", "AAA123", "4")); 371 doubleGroupedList.add(new UITestObject("Spring", "2002", "BBB123", "4")); 372 doubleGroupedList.add(new UITestObject("Spring", "2002", "CCC123", "2")); 373 374 doubleGroupedList.add(new UITestObject("Spring", "2003", "AAA123", "4")); 375 doubleGroupedList.add(new UITestObject("Spring", "2003", "BBB123", "3")); 376 doubleGroupedList.add(new UITestObject("Spring", "2003", "CCC123", "3")); 377 doubleGroupedList.add(new UITestObject("Spring", "2003", "DDD123", "2")); 378 379 for (int i = 0; i < 1000; i++) { 380 UITestObject newObj = new UITestObject(RandomStringUtils.randomAlphanumeric(6), RandomStringUtils.randomAlphanumeric(6), 381 RandomStringUtils.randomAlphanumeric(6), RandomStringUtils.randomNumeric(1)); 382 if(i%2 == 0){ 383 newObj.setBfield(true); 384 } 385 list6.add(newObj); 386 } 387 388 { // scope for name hiding purposes 389 Node<String, String> item1 = new Node<String, String>("Item 1", "Item 1"); 390 item1.addChild(new Node<String, String>("SubItem A", "SubItem A")); 391 item1.addChild(new Node<String, String>("SubItem B", "SubItem B")); 392 393 Node<String, String> item2 = new Node<String, String>("Item 2", "Item 2"); 394 item2.addChild(new Node<String, String>("SubItem A", "SubItem A")); 395 Node<String, String> sub2B = new Node<String, String>("SubItem B", "SubItem B"); 396 sub2B.addChild(new Node<String, String>("Item B-1", "Item B-1")); 397 sub2B.addChild(new Node<String, String>("Item B-2", "Item B-2")); 398 sub2B.addChild(new Node<String, String>("Item B-3", "Item B-3")); 399 item2.addChild(sub2B); 400 item2.addChild(new Node<String, String>("SubItem C", "SubItem C")); 401 402 Node<String, String> item3 = new Node<String, String>("Item 3", "Item 3"); 403 item3.addChild(new Node<String, String>("SubItem A", "SubItem A")); 404 item3.addChild(new Node<String, String>("SubItem B", "SubItem B")); 405 item3.addChild(new Node<String, String>("SubItem C", "SubItem C")); 406 item3.addChild(new Node<String, String>("SubItem D", "SubItem D")); 407 408 Node<String, String> root = new Node<String, String>("Root", "Root"); 409 root.addChild(item1); 410 root.addChild(item2); 411 root.addChild(item3); 412 413 tree1.setRootElement(root); 414 } 415 416 { // scope for name hiding purposes 417 Node<UITestObject, String> item1 = new Node<UITestObject, String>(new UITestObject("1-A", "1-B", "1-C", 418 "1-D"), "Item 1"); 419 item1.addChild(new Node<UITestObject, String>(new UITestObject("1SA-A", "1SA-B", "1SA-C", "1SA-D"), 420 "SubItem A")); 421 item1.addChild(new Node<UITestObject, String>(new UITestObject("1SB-A", "1SB-B", "1SB-C", "1SB-D"), 422 "SubItem B")); 423 424 Node<UITestObject, String> item2 = new Node<UITestObject, String>(new UITestObject("2-A", "2-B", "2-C", 425 "2-D"), "Item 2"); 426 item2.addChild(new Node<UITestObject, String>(new UITestObject("SA-a", "SA-b", "SA-c", "SA-d"), 427 "SubItem A")); 428 Node<UITestObject, String> sub2B = new Node<UITestObject, String>(new UITestObject("SB-a", "SB-b", "SB-c", 429 "SB-d"), "SubItem B"); 430 sub2B.addChild(new Node<UITestObject, String>(new UITestObject("AA", "BB", "CC", "DD"), "Item B-1")); 431 sub2B.addChild(new Node<UITestObject, String>(new UITestObject("Aa", "Bb", "Cc", "Dd"), "Item B-2")); 432 sub2B.addChild(new Node<UITestObject, String>(new UITestObject("aA", "bB", "cC", "dD"), "Item B-3")); 433 item2.addChild(sub2B); 434 item2.addChild(new Node<UITestObject, String>(new UITestObject("SC-a", "SC-b", "SC-c", "SC-d"), 435 "SubItem C")); 436 437 Node<UITestObject, String> item3 = new Node<UITestObject, String>(new UITestObject("3-A", "3-B", "3-C", 438 "3-D"), "Item 3"); 439 item3.addChild(new Node<UITestObject, String>(new UITestObject("A", "B", "C", "D"), "SubItem A")); 440 item3.addChild(new Node<UITestObject, String>(new UITestObject("1", "2", "3", "4"), "SubItem B")); 441 item3.addChild(new Node<UITestObject, String>(new UITestObject("w", "x", "y", "z"), "SubItem C")); 442 item3.addChild(new Node<UITestObject, String>(new UITestObject("!", "@", "#", "$"), "SubItem D")); 443 444 Node<UITestObject, String> root = new Node<UITestObject, String>(new UITestObject("foo", "bar", "baz", 445 "roo"), "Root"); 446 root.addChild(item1); 447 root.addChild(item2); 448 root.addChild(item3); 449 450 tree2.setRootElement(root); 451 } 452 453 remoteFieldValuesMap = new HashMap<String, Object>(); 454 remoteFieldValuesMap.put("remoteField1", "Apple"); 455 remoteFieldValuesMap.put("remoteField2", "Banana"); 456 remoteFieldValuesMap.put("remoteField3", true); 457 remoteFieldValuesMap.put("remoteField4", "Fruit"); 458 459 remoteFieldValuesMap2 = new HashMap<String, Object>(); 460 remoteFieldValuesMap2.put("remoteField1", "Apple"); 461 remoteFieldValuesMap2.put("remoteField2", "Banana"); 462 remoteFieldValuesMap2.put("remoteField3", true); 463 remoteFieldValuesMap2.put("remoteField4", "Fruit"); 464 465 field88 = "Fruits"; 466 field91 = "Read only value"; 467 field92 = "Value 92"; 468 469 field131 = new Integer(0); 470 471 DateFormat dateFormat = SimpleDateFormat.getDateInstance(SimpleDateFormat.SHORT); 472 dateList = new ArrayList<Date>(); 473 try{ 474 dateList.add(dateFormat.parse("01/01/1990")); 475 dateList.add(dateFormat.parse("10/31/2001")); 476 dateList.add(dateFormat.parse("11/05/2005")); 477 dateList.add(dateFormat.parse("02/13/2011")); 478 } 479 catch(Exception e){ 480 481 } 482 483 emptyList.clear(); 484 } 485 486 @Override 487 public void postBind(HttpServletRequest request) { 488 super.postBind(request); 489 } 490 491 /** 492 * @return the field1 493 */ 494 public String getField1() { 495 return this.field1; 496 } 497 498 /** 499 * @param field1 the field1 to set 500 */ 501 public void setField1(String field1) { 502 this.field1 = field1; 503 } 504 505 /** 506 * @return the field2 507 */ 508 public String getField2() { 509 return this.field2; 510 } 511 512 /** 513 * @param field2 the field2 to set 514 */ 515 public void setField2(String field2) { 516 this.field2 = field2; 517 } 518 519 /** 520 * @return the field3 521 */ 522 public String getField3() { 523 return this.field3; 524 } 525 526 /** 527 * @param field3 the field3 to set 528 */ 529 public void setField3(String field3) { 530 this.field3 = field3; 531 } 532 533 /** 534 * @return the field4 535 */ 536 public String getField4() { 537 return this.field4; 538 } 539 540 /** 541 * @param field4 the field4 to set 542 */ 543 public void setField4(String field4) { 544 this.field4 = field4; 545 } 546 547 /** 548 * @return the field5 549 */ 550 public String getField5() { 551 return this.field5; 552 } 553 554 /** 555 * @param field5 the field5 to set 556 */ 557 public void setField5(String field5) { 558 this.field5 = field5; 559 } 560 561 /** 562 * @return the field6 563 */ 564 public String getField6() { 565 return this.field6; 566 } 567 568 /** 569 * @param field6 the field6 to set 570 */ 571 public void setField6(String field6) { 572 this.field6 = field6; 573 } 574 575 /** 576 * @return the field7 577 */ 578 public String getField7() { 579 return this.field7; 580 } 581 582 /** 583 * @param field7 the field7 to set 584 */ 585 public void setField7(String field7) { 586 this.field7 = field7; 587 } 588 589 /** 590 * @return the field8 591 */ 592 public String getField8() { 593 return this.field8; 594 } 595 596 /** 597 * @param field8 the field8 to set 598 */ 599 public void setField8(String field8) { 600 this.field8 = field8; 601 } 602 603 /** 604 * @return the field9 605 */ 606 public String getField9() { 607 return this.field9; 608 } 609 610 /** 611 * @param field9 the field9 to set 612 */ 613 public void setField9(String field9) { 614 this.field9 = field9; 615 } 616 617 /** 618 * @return the field10 619 */ 620 public String getField10() { 621 return this.field10; 622 } 623 624 /** 625 * @param field10 the field10 to set 626 */ 627 public void setField10(String field10) { 628 this.field10 = field10; 629 } 630 631 /** 632 * @return the field11 633 */ 634 public String getField11() { 635 return this.field11; 636 } 637 638 /** 639 * @param field11 the field11 to set 640 */ 641 public void setField11(String field11) { 642 this.field11 = field11; 643 } 644 645 /** 646 * @return the field12 647 */ 648 public String getField12() { 649 return this.field12; 650 } 651 652 /** 653 * @param field12 the field12 to set 654 */ 655 public void setField12(String field12) { 656 this.field12 = field12; 657 } 658 659 /** 660 * @return the field13 661 */ 662 public String getField13() { 663 return this.field13; 664 } 665 666 /** 667 * @param field13 the field13 to set 668 */ 669 public void setField13(String field13) { 670 this.field13 = field13; 671 } 672 673 /** 674 * @return the field14 675 */ 676 public String getField14() { 677 return this.field14; 678 } 679 680 /** 681 * @param field14 the field14 to set 682 */ 683 public void setField14(String field14) { 684 this.field14 = field14; 685 } 686 687 /** 688 * @return the field15 689 */ 690 public String getField15() { 691 return this.field15; 692 } 693 694 /** 695 * @param field15 the field15 to set 696 */ 697 public void setField15(String field15) { 698 this.field15 = field15; 699 } 700 701 /** 702 * @return the field16 703 */ 704 public String getField16() { 705 return this.field16; 706 } 707 708 /** 709 * @param field16 the field16 to set 710 */ 711 public void setField16(String field16) { 712 this.field16 = field16; 713 } 714 715 /** 716 * @return the field17 717 */ 718 public String getField17() { 719 return this.field17; 720 } 721 722 /** 723 * @param field17 the field17 to set 724 */ 725 public void setField17(String field17) { 726 this.field17 = field17; 727 } 728 729 /** 730 * @return the field18 731 */ 732 public String getField18() { 733 return this.field18; 734 } 735 736 /** 737 * @param field18 the field18 to set 738 */ 739 public void setField18(String field18) { 740 this.field18 = field18; 741 } 742 743 /** 744 * @return the field19 745 */ 746 public String getField19() { 747 return this.field19; 748 } 749 750 /** 751 * @param field19 the field19 to set 752 */ 753 public void setField19(String field19) { 754 this.field19 = field19; 755 } 756 757 /** 758 * @return the field20 759 */ 760 public String getField20() { 761 return this.field20; 762 } 763 764 /** 765 * @param field20 the field20 to set 766 */ 767 public void setField20(String field20) { 768 this.field20 = field20; 769 } 770 771 /** 772 * @return the field21 773 */ 774 public String getField21() { 775 return this.field21; 776 } 777 778 /** 779 * @param field21 the field21 to set 780 */ 781 public void setField21(String field21) { 782 this.field21 = field21; 783 } 784 785 /** 786 * @return the field22 787 */ 788 public String getField22() { 789 return this.field22; 790 } 791 792 /** 793 * @param field22 the field22 to set 794 */ 795 public void setField22(String field22) { 796 this.field22 = field22; 797 } 798 799 /** 800 * @return the field23 801 */ 802 public String getField23() { 803 return this.field23; 804 } 805 806 /** 807 * @param field23 the field23 to set 808 */ 809 public void setField23(String field23) { 810 this.field23 = field23; 811 } 812 813 /** 814 * @return the field24 815 */ 816 public String getField24() { 817 return this.field24; 818 } 819 820 /** 821 * @param field24 the field24 to set 822 */ 823 public void setField24(String field24) { 824 this.field24 = field24; 825 } 826 827 /** 828 * @return the field25 829 */ 830 public String getField25() { 831 return this.field25; 832 } 833 834 /** 835 * @param field25 the field25 to set 836 */ 837 public void setField25(String field25) { 838 this.field25 = field25; 839 } 840 841 /** 842 * @return the field26 843 */ 844 public String getField26() { 845 return this.field26; 846 } 847 848 /** 849 * @param field26 the field26 to set 850 */ 851 public void setField26(String field26) { 852 this.field26 = field26; 853 } 854 855 /** 856 * @return the field27 857 */ 858 public String getField27() { 859 return this.field27; 860 } 861 862 /** 863 * @param field27 the field27 to set 864 */ 865 public void setField27(String field27) { 866 this.field27 = field27; 867 } 868 869 /** 870 * @return the field28 871 */ 872 public String getField28() { 873 return this.field28; 874 } 875 876 /** 877 * @param field28 the field28 to set 878 */ 879 public void setField28(String field28) { 880 this.field28 = field28; 881 } 882 883 /** 884 * @return the field29 885 */ 886 public String getField29() { 887 return this.field29; 888 } 889 890 /** 891 * @param field29 the field29 to set 892 */ 893 public void setField29(String field29) { 894 this.field29 = field29; 895 } 896 897 /** 898 * @return the field30 899 */ 900 public String getField30() { 901 return this.field30; 902 } 903 904 /** 905 * @param field30 the field30 to set 906 */ 907 public void setField30(String field30) { 908 this.field30 = field30; 909 } 910 911 /** 912 * @return the field31 913 */ 914 public String getField31() { 915 return this.field31; 916 } 917 918 /** 919 * @param field31 the field31 to set 920 */ 921 public void setField31(String field31) { 922 this.field31 = field31; 923 } 924 925 /** 926 * @return the field32 927 */ 928 public String getField32() { 929 return this.field32; 930 } 931 932 /** 933 * @param field32 the field32 to set 934 */ 935 public void setField32(String field32) { 936 this.field32 = field32; 937 } 938 939 /** 940 * @return the field33 941 */ 942 public String getField33() { 943 return this.field33; 944 } 945 946 /** 947 * @param field33 the field33 to set 948 */ 949 public void setField33(String field33) { 950 this.field33 = field33; 951 } 952 953 /** 954 * @return the field34 955 */ 956 public String getField34() { 957 return this.field34; 958 } 959 960 /** 961 * @return the field35 962 */ 963 public String getField35() { 964 return this.field35; 965 } 966 967 /** 968 * @param field35 the field35 to set 969 */ 970 public void setField35(String field35) { 971 this.field35 = field35; 972 } 973 974 /** 975 * @return the field36 976 */ 977 public String getField36() { 978 return this.field36; 979 } 980 981 /** 982 * @param field36 the field36 to set 983 */ 984 public void setField36(String field36) { 985 this.field36 = field36; 986 } 987 988 /** 989 * @return the field37 990 */ 991 public String getField37() { 992 return this.field37; 993 } 994 995 /** 996 * @param field37 the field37 to set 997 */ 998 public void setField37(String field37) { 999 this.field37 = field37; 1000 } 1001 1002 /** 1003 * @return the field38 1004 */ 1005 public String getField38() { 1006 return this.field38; 1007 } 1008 1009 /** 1010 * @param field38 the field38 to set 1011 */ 1012 public void setField38(String field38) { 1013 this.field38 = field38; 1014 } 1015 1016 /** 1017 * @return the field39 1018 */ 1019 public String getField39() { 1020 return this.field39; 1021 } 1022 1023 /** 1024 * @param field39 the field39 to set 1025 */ 1026 public void setField39(String field39) { 1027 this.field39 = field39; 1028 } 1029 1030 /** 1031 * @return the field40 1032 */ 1033 public String getField40() { 1034 return this.field40; 1035 } 1036 1037 /** 1038 * @param field40 the field40 to set 1039 */ 1040 public void setField40(String field40) { 1041 this.field40 = field40; 1042 } 1043 1044 /** 1045 * @return the field41 1046 */ 1047 public String getField41() { 1048 return this.field41; 1049 } 1050 1051 /** 1052 * @param field41 the field41 to set 1053 */ 1054 public void setField41(String field41) { 1055 this.field41 = field41; 1056 } 1057 1058 /** 1059 * @return the field42 1060 */ 1061 public String getField42() { 1062 return this.field42; 1063 } 1064 1065 /** 1066 * @param field42 the field42 to set 1067 */ 1068 public void setField42(String field42) { 1069 this.field42 = field42; 1070 } 1071 1072 /** 1073 * @return the field43 1074 */ 1075 public String getField43() { 1076 return this.field43; 1077 } 1078 1079 /** 1080 * @param field43 the field43 to set 1081 */ 1082 public void setField43(String field43) { 1083 this.field43 = field43; 1084 } 1085 1086 /** 1087 * @return the field44 1088 */ 1089 public String getField44() { 1090 return this.field44; 1091 } 1092 1093 /** 1094 * @param field44 the field44 to set 1095 */ 1096 public void setField44(String field44) { 1097 this.field44 = field44; 1098 } 1099 1100 /** 1101 * @return the field45 1102 */ 1103 public String getField45() { 1104 return this.field45; 1105 } 1106 1107 /** 1108 * @param field45 the field45 to set 1109 */ 1110 public void setField45(String field45) { 1111 this.field45 = field45; 1112 } 1113 1114 /** 1115 * @return the field46 1116 */ 1117 public String getField46() { 1118 return this.field46; 1119 } 1120 1121 /** 1122 * @param field46 the field46 to set 1123 */ 1124 public void setField46(String field46) { 1125 this.field46 = field46; 1126 } 1127 1128 /** 1129 * @return the field47 1130 */ 1131 public String getField47() { 1132 return this.field47; 1133 } 1134 1135 /** 1136 * @param field47 the field47 to set 1137 */ 1138 public void setField47(String field47) { 1139 this.field47 = field47; 1140 } 1141 1142 /** 1143 * @return the field48 1144 */ 1145 public String getField48() { 1146 return this.field48; 1147 } 1148 1149 /** 1150 * @param field48 the field48 to set 1151 */ 1152 public void setField48(String field48) { 1153 this.field48 = field48; 1154 } 1155 1156 /** 1157 * @return the field49 1158 */ 1159 public String getField49() { 1160 return this.field49; 1161 } 1162 1163 /** 1164 * @param field49 the field49 to set 1165 */ 1166 public void setField49(String field49) { 1167 this.field49 = field49; 1168 } 1169 1170 /** 1171 * @return the field50 1172 */ 1173 public String getField50() { 1174 return this.field50; 1175 } 1176 1177 /** 1178 * @param field50 the field50 to set 1179 */ 1180 public void setField50(String field50) { 1181 this.field50 = field50; 1182 } 1183 1184 /** 1185 * @return the field51 1186 */ 1187 public String getField51() { 1188 return this.field51; 1189 } 1190 1191 /** 1192 * @param field51 the field51 to set 1193 */ 1194 public void setField51(String field51) { 1195 this.field51 = field51; 1196 } 1197 1198 /** 1199 * @return the field52 1200 */ 1201 public String getField52() { 1202 return this.field52; 1203 } 1204 1205 /** 1206 * @param field52 the field52 to set 1207 */ 1208 public void setField52(String field52) { 1209 this.field52 = field52; 1210 } 1211 1212 /** 1213 * @return the field53 1214 */ 1215 public String getField53() { 1216 return this.field53; 1217 } 1218 1219 /** 1220 * @param field53 the field53 to set 1221 */ 1222 public void setField53(String field53) { 1223 this.field53 = field53; 1224 } 1225 1226 /** 1227 * @return the field54 1228 */ 1229 public String getField54() { 1230 return this.field54; 1231 } 1232 1233 /** 1234 * @param field54 the field54 to set 1235 */ 1236 public void setField54(String field54) { 1237 this.field54 = field54; 1238 } 1239 1240 /** 1241 * @return the field55 1242 */ 1243 public String getField55() { 1244 return this.field55; 1245 } 1246 1247 /** 1248 * @param field55 the field55 to set 1249 */ 1250 public void setField55(String field55) { 1251 this.field55 = field55; 1252 } 1253 1254 /** 1255 * @return the field56 1256 */ 1257 public String getField56() { 1258 return this.field56; 1259 } 1260 1261 /** 1262 * @param field56 the field56 to set 1263 */ 1264 public void setField56(String field56) { 1265 this.field56 = field56; 1266 } 1267 1268 /** 1269 * @return the field57 1270 */ 1271 public String getField57() { 1272 return this.field57; 1273 } 1274 1275 /** 1276 * @param field57 the field57 to set 1277 */ 1278 public void setField57(String field57) { 1279 this.field57 = field57; 1280 } 1281 1282 /** 1283 * @return the field58 1284 */ 1285 public String getField58() { 1286 return this.field58; 1287 } 1288 1289 /** 1290 * @param field58 the field58 to set 1291 */ 1292 public void setField58(String field58) { 1293 this.field58 = field58; 1294 } 1295 1296 /** 1297 * @return the field59 1298 */ 1299 public String getField59() { 1300 return this.field59; 1301 } 1302 1303 /** 1304 * @param field59 the field59 to set 1305 */ 1306 public void setField59(String field59) { 1307 this.field59 = field59; 1308 } 1309 1310 /** 1311 * @return the field60 1312 */ 1313 public String getField60() { 1314 return this.field60; 1315 } 1316 1317 /** 1318 * @param field60 the field60 to set 1319 */ 1320 public void setField60(String field60) { 1321 this.field60 = field60; 1322 } 1323 1324 /** 1325 * @return the field61 1326 */ 1327 public String getField61() { 1328 return this.field61; 1329 } 1330 1331 /** 1332 * @param field61 the field61 to set 1333 */ 1334 public void setField61(String field61) { 1335 this.field61 = field61; 1336 } 1337 1338 /** 1339 * @return the field62 1340 */ 1341 public String getField62() { 1342 return this.field62; 1343 } 1344 1345 /** 1346 * @param field62 the field62 to set 1347 */ 1348 public void setField62(String field62) { 1349 this.field62 = field62; 1350 } 1351 1352 /** 1353 * @return the field63 1354 */ 1355 public String getField63() { 1356 return this.field63; 1357 } 1358 1359 /** 1360 * @param field63 the field63 to set 1361 */ 1362 public void setField63(String field63) { 1363 this.field63 = field63; 1364 } 1365 1366 /** 1367 * @return the field64 1368 */ 1369 public String getField64() { 1370 return this.field64; 1371 } 1372 1373 /** 1374 * @param field64 the field64 to set 1375 */ 1376 public void setField64(String field64) { 1377 this.field64 = field64; 1378 } 1379 1380 /** 1381 * @return the field65 1382 */ 1383 public String getField65() { 1384 return this.field65; 1385 } 1386 1387 /** 1388 * @param field65 the field65 to set 1389 */ 1390 public void setField65(String field65) { 1391 this.field65 = field65; 1392 } 1393 1394 /** 1395 * @param field34 the field34 to set 1396 */ 1397 public void setField34(String field34) { 1398 this.field34 = field34; 1399 } 1400 1401 /** 1402 * @return the bField1 1403 */ 1404 public boolean isbField1() { 1405 return this.bField1; 1406 } 1407 1408 /** 1409 * @param bField1 the bField1 to set 1410 */ 1411 public void setbField1(boolean bField1) { 1412 this.bField1 = bField1; 1413 } 1414 1415 /** 1416 * @return the bField2 1417 */ 1418 public boolean isbField2() { 1419 return this.bField2; 1420 } 1421 1422 /** 1423 * @param bField2 the bField2 to set 1424 */ 1425 public void setbField2(boolean bField2) { 1426 this.bField2 = bField2; 1427 } 1428 1429 /** 1430 * @return the bField3 1431 */ 1432 public boolean isbField3() { 1433 return this.bField3; 1434 } 1435 1436 /** 1437 * @param bField3 the bField3 to set 1438 */ 1439 public void setbField3(boolean bField3) { 1440 this.bField3 = bField3; 1441 } 1442 1443 /** 1444 * @return the list1 1445 */ 1446 public List<UITestObject> getList1() { 1447 return this.list1; 1448 } 1449 1450 /** 1451 * @param list1 the list1 to set 1452 */ 1453 public void setList1(List<UITestObject> list1) { 1454 this.list1 = list1; 1455 } 1456 1457 /** 1458 * @return the list2 1459 */ 1460 public List<UITestObject> getList2() { 1461 return this.list2; 1462 } 1463 1464 /** 1465 * @param list2 the list2 to set 1466 */ 1467 public void setList2(List<UITestObject> list2) { 1468 this.list2 = list2; 1469 } 1470 1471 /** 1472 * @return the list3 1473 */ 1474 public List<UITestObject> getList3() { 1475 return this.list3; 1476 } 1477 1478 /** 1479 * @param list3 the list3 to set 1480 */ 1481 public void setList3(List<UITestObject> list3) { 1482 this.list3 = list3; 1483 } 1484 1485 /** 1486 * @return the list4 1487 */ 1488 public List<UITestObject> getList4() { 1489 return this.list4; 1490 } 1491 1492 /** 1493 * @param list4 the list4 to set 1494 */ 1495 public void setList4(List<UITestObject> list4) { 1496 this.list4 = list4; 1497 } 1498 1499 /** 1500 * @return the gField1 1501 */ 1502 public String getgField1() { 1503 return this.gField1; 1504 } 1505 1506 /** 1507 * @param gField1 the gField1 to set 1508 */ 1509 public void setgField1(String gField1) { 1510 this.gField1 = gField1; 1511 } 1512 1513 /** 1514 * @return the gField2 1515 */ 1516 public String getgField2() { 1517 return this.gField2; 1518 } 1519 1520 /** 1521 * @param gField2 the gField2 to set 1522 */ 1523 public void setgField2(String gField2) { 1524 this.gField2 = gField2; 1525 } 1526 1527 /** 1528 * @return the gField3 1529 */ 1530 public String getgField3() { 1531 return this.gField3; 1532 } 1533 1534 /** 1535 * @param gField3 the gField3 to set 1536 */ 1537 public void setgField3(String gField3) { 1538 this.gField3 = gField3; 1539 } 1540 1541 /** 1542 * @return the field66 1543 */ 1544 public String getField66() { 1545 return this.field66; 1546 } 1547 1548 /** 1549 * @param field66 the field66 to set 1550 */ 1551 public void setField66(String field66) { 1552 this.field66 = field66; 1553 } 1554 1555 /** 1556 * @return the field67 1557 */ 1558 public String getField67() { 1559 return this.field67; 1560 } 1561 1562 /** 1563 * @param field67 the field67 to set 1564 */ 1565 public void setField67(String field67) { 1566 this.field67 = field67; 1567 } 1568 1569 /** 1570 * @return the field68 1571 */ 1572 public String getField68() { 1573 return this.field68; 1574 } 1575 1576 /** 1577 * @param field68 the field68 to set 1578 */ 1579 public void setField68(String field68) { 1580 this.field68 = field68; 1581 } 1582 1583 /** 1584 * @return the field69 1585 */ 1586 public String getField69() { 1587 return this.field69; 1588 } 1589 1590 /** 1591 * @param field69 the field69 to set 1592 */ 1593 public void setField69(String field69) { 1594 this.field69 = field69; 1595 } 1596 1597 /** 1598 * @return the field70 1599 */ 1600 public String getField70() { 1601 return this.field70; 1602 } 1603 1604 /** 1605 * @param field70 the field70 to set 1606 */ 1607 public void setField70(String field70) { 1608 this.field70 = field70; 1609 } 1610 1611 /** 1612 * @return the field71 1613 */ 1614 public String getField71() { 1615 return this.field71; 1616 } 1617 1618 /** 1619 * @param field71 the field71 to set 1620 */ 1621 public void setField71(String field71) { 1622 this.field71 = field71; 1623 } 1624 1625 /** 1626 * @return the field72 1627 */ 1628 public String getField72() { 1629 return this.field72; 1630 } 1631 1632 /** 1633 * @param field72 the field72 to set 1634 */ 1635 public void setField72(String field72) { 1636 this.field72 = field72; 1637 } 1638 1639 /** 1640 * @return the field73 1641 */ 1642 public String getField73() { 1643 return this.field73; 1644 } 1645 1646 /** 1647 * @param field73 the field73 to set 1648 */ 1649 public void setField73(String field73) { 1650 this.field73 = field73; 1651 } 1652 1653 /** 1654 * @return the field74 1655 */ 1656 public String getField74() { 1657 return this.field74; 1658 } 1659 1660 /** 1661 * @param field74 the field74 to set 1662 */ 1663 public void setField74(String field74) { 1664 this.field74 = field74; 1665 } 1666 1667 /** 1668 * @return the field75 1669 */ 1670 public String getField75() { 1671 return this.field75; 1672 } 1673 1674 /** 1675 * @param field75 the field75 to set 1676 */ 1677 public void setField75(String field75) { 1678 this.field75 = field75; 1679 } 1680 1681 /** 1682 * @return the field76 1683 */ 1684 public String getField76() { 1685 return this.field76; 1686 } 1687 1688 /** 1689 * @param field76 the field76 to set 1690 */ 1691 public void setField76(String field76) { 1692 this.field76 = field76; 1693 } 1694 1695 /** 1696 * @return the field77 1697 */ 1698 public String getField77() { 1699 return this.field77; 1700 } 1701 1702 /** 1703 * @param field77 the field77 to set 1704 */ 1705 public void setField77(String field77) { 1706 this.field77 = field77; 1707 } 1708 1709 /** 1710 * @return the field78 1711 */ 1712 public String getField78() { 1713 return this.field78; 1714 } 1715 1716 /** 1717 * @param field78 the field78 to set 1718 */ 1719 public void setField78(String field78) { 1720 this.field78 = field78; 1721 } 1722 1723 /** 1724 * @return the field79 1725 */ 1726 public String getField79() { 1727 return this.field79; 1728 } 1729 1730 /** 1731 * @param field79 the field79 to set 1732 */ 1733 public void setField79(String field79) { 1734 this.field79 = field79; 1735 } 1736 1737 /** 1738 * @return the field80 1739 */ 1740 public String getField80() { 1741 return this.field80; 1742 } 1743 1744 /** 1745 * @param field80 the field80 to set 1746 */ 1747 public void setField80(String field80) { 1748 this.field80 = field80; 1749 } 1750 1751 /** 1752 * @return the field81 1753 */ 1754 public String getField81() { 1755 return this.field81; 1756 } 1757 1758 /** 1759 * @param field81 the field81 to set 1760 */ 1761 public void setField81(String field81) { 1762 this.field81 = field81; 1763 } 1764 1765 public String getMField1() { 1766 return mField1; 1767 } 1768 1769 public void setMField1(String mField1) { 1770 this.mField1 = mField1; 1771 } 1772 1773 public String getMField2() { 1774 return mField2; 1775 } 1776 1777 public void setMField2(String mField2) { 1778 this.mField2 = mField2; 1779 } 1780 1781 public String getMField3() { 1782 return mField3; 1783 } 1784 1785 public void setMField3(String mField3) { 1786 this.mField3 = mField3; 1787 } 1788 1789 /** 1790 * @return the list5 1791 */ 1792 public List<UITestObject> getList5() { 1793 return this.list5; 1794 } 1795 1796 /** 1797 * @param list5 the list5 to set 1798 */ 1799 public void setList5(List<UITestObject> list5) { 1800 this.list5 = list5; 1801 } 1802 1803 /** 1804 * @return the list6 1805 */ 1806 public List<UITestObject> getList6() { 1807 return this.list6; 1808 } 1809 1810 /** 1811 * @param list6 the list6 to set 1812 */ 1813 public void setList6(List<UITestObject> list6) { 1814 this.list6 = list6; 1815 } 1816 1817 public List<UITestObject> getEmptyList() { 1818 return emptyList; 1819 } 1820 1821 public void setEmptyList(List<UITestObject> emptyList) { 1822 this.emptyList = emptyList; 1823 } 1824 1825 /** 1826 * @return the tree1 1827 */ 1828 public Tree<String, String> getTree1() { 1829 return this.tree1; 1830 } 1831 1832 /** 1833 * @param tree1 the tree1 to set 1834 */ 1835 public void setTree1(Tree<String, String> tree1) { 1836 this.tree1 = tree1; 1837 } 1838 1839 public Tree<UITestObject, String> getTree2() { 1840 return tree2; 1841 } 1842 1843 public void setTree2(Tree<UITestObject, String> tree2) { 1844 this.tree2 = tree2; 1845 } 1846 1847 public String getField82() { 1848 return field82; 1849 } 1850 1851 public void setField82(String field82) { 1852 this.field82 = field82; 1853 } 1854 1855 public String getField83() { 1856 return field83; 1857 } 1858 1859 public void setField83(String field83) { 1860 this.field83 = field83; 1861 } 1862 1863 public String getField84() { 1864 return field84; 1865 } 1866 1867 public void setField84(String field84) { 1868 this.field84 = field84; 1869 } 1870 1871 public String getField85() { 1872 return field85; 1873 } 1874 1875 public void setField85(String field85) { 1876 this.field85 = field85; 1877 } 1878 1879 public String getField86() { 1880 return field86; 1881 } 1882 1883 public void setField86(String field86) { 1884 this.field86 = field86; 1885 } 1886 1887 public String getField87() { 1888 return field87; 1889 } 1890 1891 public void setField87(String field87) { 1892 this.field87 = field87; 1893 } 1894 1895 public String getField88() { 1896 return field88; 1897 } 1898 1899 public void setField88(String field88) { 1900 this.field88 = field88; 1901 } 1902 1903 public String getField89() { 1904 return field89; 1905 } 1906 1907 public void setField89(String field89) { 1908 this.field89 = field89; 1909 } 1910 1911 public Map<String, Object> getRemoteFieldValuesMap() { 1912 return remoteFieldValuesMap; 1913 } 1914 1915 public void setRemoteFieldValuesMap(Map<String, Object> remoteFieldValuesMap) { 1916 this.remoteFieldValuesMap = remoteFieldValuesMap; 1917 } 1918 1919 public Map<String, Object> getRemoteFieldValuesMap2() { 1920 return remoteFieldValuesMap2; 1921 } 1922 1923 public void setRemoteFieldValuesMap2(Map<String, Object> remoteFieldValuesMap2) { 1924 this.remoteFieldValuesMap2 = remoteFieldValuesMap2; 1925 } 1926 1927 public String getField90() { 1928 return field90; 1929 } 1930 1931 public void setField90(String field90) { 1932 this.field90 = field90; 1933 } 1934 1935 public String getField91() { 1936 return field91; 1937 } 1938 1939 public void setField91(String field91) { 1940 this.field91 = field91; 1941 } 1942 1943 public String getField92() { 1944 return field92; 1945 } 1946 1947 public void setField92(String field92) { 1948 this.field92 = field92; 1949 } 1950 1951 public String getField100() { 1952 return field100; 1953 } 1954 1955 public void setField100(String field100) { 1956 this.field100 = field100; 1957 } 1958 1959 public String getField101() { 1960 return field101; 1961 } 1962 1963 public void setField101(String field101) { 1964 this.field101 = field101; 1965 } 1966 1967 public String getField102() { 1968 return field102; 1969 } 1970 1971 public void setField102(String field102) { 1972 this.field102 = field102; 1973 } 1974 1975 public String getField103() { 1976 return field103; 1977 } 1978 1979 public void setField103(String field103) { 1980 this.field103 = field103; 1981 } 1982 1983 public String getField104() { 1984 return field104; 1985 } 1986 1987 public void setField104(String field104) { 1988 this.field104 = field104; 1989 } 1990 1991 public String getField105() { 1992 return field105; 1993 } 1994 1995 public void setField105(String field105) { 1996 this.field105 = field105; 1997 } 1998 1999 public String getField106() { 2000 return field106; 2001 } 2002 2003 public void setField106(String field106) { 2004 this.field106 = field106; 2005 } 2006 2007 public String getField107() { 2008 return field107; 2009 } 2010 2011 public void setField107(String field107) { 2012 this.field107 = field107; 2013 } 2014 2015 public String getField108() { 2016 return field108; 2017 } 2018 2019 public void setField108(String field108) { 2020 this.field108 = field108; 2021 } 2022 2023 public String getField110() { 2024 return field110; 2025 } 2026 2027 public void setField110(String field110) { 2028 this.field110 = field110; 2029 } 2030 2031 public String getField109() { 2032 return field109; 2033 } 2034 2035 public void setField109(String field109) { 2036 this.field109 = field109; 2037 } 2038 2039 public String getField111() { 2040 return field111; 2041 } 2042 2043 public void setField111(String field111) { 2044 this.field111 = field111; 2045 } 2046 2047 public String getField112() { 2048 return field112; 2049 } 2050 2051 public void setField112(String field112) { 2052 this.field112 = field112; 2053 } 2054 2055 public String getField113() { 2056 return field113; 2057 } 2058 2059 public void setField113(String field113) { 2060 this.field113 = field113; 2061 } 2062 2063 public List<String> getField114() { 2064 return field114; 2065 } 2066 2067 public void setField114(List<String> field114) { 2068 this.field114 = field114; 2069 } 2070 2071 public List<String> getField115() { 2072 return field115; 2073 } 2074 2075 public void setField115(List<String> field115) { 2076 this.field115 = field115; 2077 } 2078 2079 public List<String> getField116() { 2080 return field116; 2081 } 2082 2083 public void setField116(List<String> field116) { 2084 this.field116 = field116; 2085 } 2086 2087 public String getField117() { 2088 return field117; 2089 } 2090 2091 public void setField117(String field117) { 2092 this.field117 = field117; 2093 } 2094 2095 public String getField118() { 2096 return field118; 2097 } 2098 2099 public void setField118(String field118) { 2100 this.field118 = field118; 2101 } 2102 2103 public String getTestPersonId() { 2104 return testPersonId; 2105 } 2106 2107 public void setTestPersonId(String testPersonId) { 2108 this.testPersonId = testPersonId; 2109 } 2110 2111 public Person getTestPerson() { 2112 if ((testPerson == null) || !StringUtils.equals(testPerson.getPrincipalId(), getTestPersonId())) { 2113 testPerson = KimApiServiceLocator.getPersonService().getPerson(getTestPersonId()); 2114 2115 if (testPerson == null) { 2116 try { 2117 testPerson = KimApiServiceLocator.getPersonService().getPersonImplementationClass().newInstance(); 2118 } catch (Exception e) { 2119 throw new RuntimeException(e); 2120 } 2121 } 2122 } 2123 2124 return testPerson; 2125 } 2126 2127 public void setTestPerson(Person testPerson) { 2128 this.testPerson = testPerson; 2129 } 2130 2131 public String getField119() { 2132 return field119; 2133 } 2134 2135 public void setField119(String field119) { 2136 this.field119 = field119; 2137 } 2138 2139 public List<String> getField120() { 2140 return field120; 2141 } 2142 2143 public void setField120(List<String> field120) { 2144 this.field120 = field120; 2145 } 2146 2147 public String getField121() { 2148 return field121; 2149 } 2150 2151 public void setField121(String field121) { 2152 this.field121 = field121; 2153 } 2154 2155 public String getField122() { 2156 return field122; 2157 } 2158 2159 public void setField122(String field122) { 2160 this.field122 = field122; 2161 } 2162 2163 public String getField123() { 2164 return field123; 2165 } 2166 2167 public void setField123(String field123) { 2168 this.field123 = field123; 2169 } 2170 2171 public String getField124() { 2172 return field124; 2173 } 2174 2175 public void setField124(String field124) { 2176 this.field124 = field124; 2177 } 2178 2179 public String getField125() { 2180 return field125; 2181 } 2182 2183 public void setField125(String field125) { 2184 this.field125 = field125; 2185 } 2186 2187 public String getField126() { 2188 return field126; 2189 } 2190 2191 public void setField126(String field126) { 2192 this.field126 = field126; 2193 } 2194 2195 public String getField127() { 2196 return field127; 2197 } 2198 2199 public void setField127(String field127) { 2200 this.field127 = field127; 2201 } 2202 2203 public String getField128() { 2204 return field128; 2205 } 2206 2207 public void setField128(String field128) { 2208 this.field128 = field128; 2209 } 2210 2211 public String getField129() { 2212 return field129; 2213 } 2214 2215 public void setField129(String field129) { 2216 this.field129 = field129; 2217 } 2218 2219 public String getField130() { 2220 return field130; 2221 } 2222 2223 public void setField130(String field130) { 2224 this.field130 = field130; 2225 } 2226 2227 public UITestObject getUiTestObject() { 2228 return uiTestObject; 2229 } 2230 2231 public void setUiTestObject(UITestObject uiTestObject) { 2232 this.uiTestObject = uiTestObject; 2233 } 2234 2235 public Integer getField131() { 2236 return field131; 2237 } 2238 2239 public void setField131(Integer field131) { 2240 this.field131 = field131; 2241 } 2242 2243 public String getField132() { 2244 return field132; 2245 } 2246 2247 public void setField132(String field132) { 2248 this.field132 = field132; 2249 } 2250 2251 public String getField133() { 2252 return field133; 2253 } 2254 2255 public void setField133(String field133) { 2256 this.field133 = field133; 2257 } 2258 2259 public String getField134() { 2260 return field134; 2261 } 2262 2263 public void setField134(String field134) { 2264 this.field134 = field134; 2265 } 2266 2267 public MultipartFile getFileUpload() { 2268 return fileUpload; 2269 } 2270 2271 public void setFileUpload(MultipartFile fileUpload) { 2272 this.fileUpload = fileUpload; 2273 } 2274 2275 public List<TimeInfo> getListTimeInfo() { 2276 return listTimeInfo; 2277 } 2278 2279 public void setListTimeInfo(List<TimeInfo> listTimeInfo) { 2280 this.listTimeInfo = listTimeInfo; 2281 } 2282 2283 public Date getDate1() { 2284 return date1; 2285 } 2286 2287 public void setDate1(Date date1) { 2288 this.date1 = date1; 2289 } 2290 2291 public Date getDate2() { 2292 return date2; 2293 } 2294 2295 public void setDate2(Date date2) { 2296 this.date2 = date2; 2297 } 2298 2299 public Date getDate3() { 2300 return date3; 2301 } 2302 2303 public void setDate3(Date date3) { 2304 this.date3 = date3; 2305 } 2306 2307 public Date getDate4() { 2308 return date4; 2309 } 2310 2311 public void setDate4(Date date4) { 2312 this.date4 = date4; 2313 } 2314 2315 public Date getDate5() { 2316 return date5; 2317 } 2318 2319 public void setDate5(Date date5) { 2320 this.date5 = date5; 2321 } 2322 2323 public Date getDate6() { 2324 return date6; 2325 } 2326 2327 public void setDate6(Date date6) { 2328 this.date6 = date6; 2329 } 2330 2331 public Date getDate7() { 2332 return date7; 2333 } 2334 2335 public void setDate7(Date date7) { 2336 this.date7 = date7; 2337 } 2338 2339 public List<DayEvent> getDayEvents() { 2340 return dayEvents; 2341 } 2342 2343 public void setDayEvents(List<DayEvent> dayEvents) { 2344 this.dayEvents = dayEvents; 2345 } 2346 2347 public List<UITestObject> getList1generated() { 2348 return list1generated; 2349 } 2350 2351 public void setList1generated(List<UITestObject> list1generated) { 2352 this.list1generated = list1generated; 2353 } 2354 2355 public List<UITestObject> getList2generated() { 2356 return list2generated; 2357 } 2358 2359 public void setList2generated(List<UITestObject> list2generated) { 2360 this.list2generated = list2generated; 2361 } 2362 2363 public List<UITestObject> getList3generated() { 2364 return list3generated; 2365 } 2366 2367 public void setList3generated(List<UITestObject> list3generated) { 2368 this.list3generated = list3generated; 2369 } 2370 2371 public String getRichMessageField() { 2372 return richMessageField; 2373 } 2374 2375 public void setRichMessageField(String richMessageField) { 2376 this.richMessageField = richMessageField; 2377 } 2378 2379 public String getTestValueField() { 2380 return testValueField; 2381 } 2382 2383 public void setTestValueField(String testValueField) { 2384 this.testValueField = testValueField; 2385 } 2386 2387 public String getRichMessageField2() { 2388 return richMessageField2; 2389 } 2390 2391 public void setRichMessageField2(String richMessageField2) { 2392 this.richMessageField2 = richMessageField2; 2393 } 2394 2395 public String getCurrentTimestamp() { 2396 DateTimeService dateTimeService = CoreApiServiceLocator.getDateTimeService(); 2397 return dateTimeService.getCurrentTimestamp().toString(); 2398 } 2399 2400 public List<UITestObject> getGroupedList1() { 2401 return groupedList1; 2402 } 2403 2404 public void setGroupedList1(List<UITestObject> groupedList1) { 2405 this.groupedList1 = groupedList1; 2406 } 2407 2408 public List<UITestObject> getGroupedList2() { 2409 return groupedList2; 2410 } 2411 2412 public void setGroupedList2(List<UITestObject> groupedList2) { 2413 this.groupedList2 = groupedList2; 2414 } 2415 2416 public List<UITestObject> getGroupedList3() { 2417 return groupedList3; 2418 } 2419 2420 public void setGroupedList3(List<UITestObject> groupedList3) { 2421 this.groupedList3 = groupedList3; 2422 } 2423 2424 public List<UITestObject> getDoubleGroupedList() { 2425 return doubleGroupedList; 2426 } 2427 2428 public void setDoubleGroupedList(List<UITestObject> doubleGroupedList) { 2429 this.doubleGroupedList = doubleGroupedList; 2430 } 2431 2432 public String getFakeTotal() { 2433 return fakeTotal; 2434 } 2435 2436 public void setFakeTotal(String fakeTotal) { 2437 this.fakeTotal = fakeTotal; 2438 } 2439 2440 public List<String> getStringList1() { 2441 return stringList1; 2442 } 2443 2444 public void setStringList1(List<String> stringList1) { 2445 this.stringList1 = stringList1; 2446 } 2447 2448 public List<String> getStringList2() { 2449 return stringList2; 2450 } 2451 2452 public void setStringList2(List<String> stringList2) { 2453 this.stringList2 = stringList2; 2454 } 2455 2456 public List<String> getStringList3() { 2457 return stringList3; 2458 } 2459 2460 public void setStringList3(List<String> stringList3) { 2461 this.stringList3 = stringList3; 2462 } 2463 2464 public List<String> getStringList4() { 2465 return stringList4; 2466 } 2467 2468 public void setStringList4(List<String> stringList4) { 2469 this.stringList4 = stringList4; 2470 } 2471 2472 public List<Integer> getIntList() { 2473 return intList; 2474 } 2475 2476 public void setIntList(List<Integer> intList) { 2477 this.intList = intList; 2478 } 2479 2480 public List<Double> getDoubleList() { 2481 return doubleList; 2482 } 2483 2484 public void setDoubleList(List<Double> doubleList) { 2485 this.doubleList = doubleList; 2486 } 2487 2488 public List<Date> getDateList() { 2489 return dateList; 2490 } 2491 2492 public void setDateList(List<Date> dateList) { 2493 this.dateList = dateList; 2494 } 2495 2496 public String getSourceCodeField() { 2497 return sourceCodeField; 2498 } 2499 2500 public void setSourceCodeField(String sourceCodeField) { 2501 this.sourceCodeField = sourceCodeField; 2502 } 2503 }