Changeset 3829
- Timestamp:
- Sep 8, 2010, 10:09:59 AM (13 years ago)
- Location:
- trunk/client/servlet/src/org/proteios
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/client/servlet/src/org/proteios/action/extract/AddExtract.java
r3828 r3829 96 96 extract.setDescription(getString(DescriptionField.VPARAM)); 97 97 // 98 String storageLocation = getString( FormFactory.VSTORAGELOCATION);98 String storageLocation = getString(StorageLocationField.VPARAM); 99 99 extract.setStorageLocation(storageLocation); 100 100 // -
trunk/client/servlet/src/org/proteios/action/extract/AddLabeledExtract.java
r3828 r3829 93 93 labeledExtract.setDescription(getString(DescriptionField.VPARAM)); 94 94 // 95 String storageLocation = getString( FormFactory.VSTORAGELOCATION);95 String storageLocation = getString(StorageLocationField.VPARAM); 96 96 labeledExtract.setStorageLocation(storageLocation); 97 97 // -
trunk/client/servlet/src/org/proteios/action/extract/AddSecondaryExtract.java
r3828 r3829 84 84 extract.setDescription(getString(DescriptionField.VPARAM)); 85 85 // 86 String storageLocation = getString( FormFactory.VSTORAGELOCATION);86 String storageLocation = getString(StorageLocationField.VPARAM); 87 87 extract.setStorageLocation(storageLocation); 88 88 // -
trunk/client/servlet/src/org/proteios/action/extract/AddSecondaryLabeledExtract.java
r3828 r3829 96 96 labeledExtract.setDescription(getString(DescriptionField.VPARAM)); 97 97 // 98 String storageLocation = getString( FormFactory.VSTORAGELOCATION);98 String storageLocation = getString(StorageLocationField.VPARAM); 99 99 labeledExtract.setStorageLocation(storageLocation); 100 100 // -
trunk/client/servlet/src/org/proteios/action/extract/SaveExtract.java
r3828 r3829 71 71 extract.setDescription(getString(DescriptionField.VPARAM)); 72 72 // 73 String storageLocation = getString( FormFactory.VSTORAGELOCATION);73 String storageLocation = getString(StorageLocationField.VPARAM); 74 74 extract.setStorageLocation(storageLocation); 75 75 // -
trunk/client/servlet/src/org/proteios/action/extract/SaveLabeledExtract.java
r3828 r3829 74 74 extract.setDescription(getString(DescriptionField.VPARAM)); 75 75 // 76 String storageLocation = getString( FormFactory.VSTORAGELOCATION);76 String storageLocation = getString(StorageLocationField.VPARAM); 77 77 extract.setStorageLocation(storageLocation); 78 78 // -
trunk/client/servlet/src/org/proteios/gui/form/FormFactory.java
r3828 r3829 248 248 public static final VBoolean VISMICROTITREPLATE = new VBoolean("isMicrotitrePlate", false); 249 249 public static final VString VRANDOMSTRING = new VString("randomString", 1,15, true); 250 public static final VString VSTORAGELOCATION = new VString("storageLocation", 0, 255, false);251 250 public static final VInteger VCOUNT = new VInteger("count", 0, true); 252 251 public static final VInteger VDIRCOUNT = new VInteger("dirCount", 0, true); … … 8124 8123 fs.add(descriptionF); 8125 8124 // 8126 TextField<String> storageLocationF = new StorageLocationField();8125 TextField<String> storageLocationF = new StorageLocationField(); 8127 8126 fs.add(storageLocationF); 8128 8127 // … … 8172 8171 fs.add(descriptionF); 8173 8172 // 8174 TextField<String> storageLocationF = new StorageLocationField();8173 TextField<String> storageLocationF = new StorageLocationField(); 8175 8174 fs.add(storageLocationF); 8176 8175 // … … 8238 8237 fs.add(descriptionF); 8239 8238 // 8240 TextField<String> storageLocationF = new StorageLocationField();8239 TextField<String> storageLocationF = new StorageLocationField(); 8241 8240 fs.add(storageLocationF); 8242 8241 // … … 8444 8443 } 8445 8444 } 8446 }8447 8448 8449 8450 private TextField<String> newStorageLocationField()8451 {8452 TextField<String> field = new TextField<String>(VSTORAGELOCATION);8453 field.setLabel("StorageLocation");8454 field.setHelp("E.g. Fridge X on floor Y");8455 return field;8456 8445 } 8457 8446
Note: See TracChangeset
for help on using the changeset viewer.