Changeset 3806
- Timestamp:
- Sep 1, 2010, 9:26:09 AM (13 years ago)
- Location:
- trunk/client/servlet/src/org/proteios
- Files:
-
- 3 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/client/servlet/src/org/proteios/action/plugin/CreateFileImportJob.java
r3805 r3806 57 57 */ 58 58 Integer fileId = getValidInteger(ItemIdField.VPARAM); 59 Integer pluginDefId = getValidInteger( ImportPluginSelect.VPARAM);59 Integer pluginDefId = getValidInteger(PluginSelect.VPARAM); 60 60 /*********************************************************************** 61 61 * Create job -
trunk/client/servlet/src/org/proteios/gui/form/FormFactory.java
r3805 r3806 1124 1124 if (dc != null) 1125 1125 { 1126 Select<VInteger> typeS = new ImportPluginSelect(dc, types);1126 Select<VInteger> typeS = new PluginSelect(dc, types); 1127 1127 fs.add(typeS); 1128 1128 } … … 2843 2843 properties.add(getPlateExternalIdField()); 2844 2844 // Selector of plugins 2845 properties.add(new ImportPluginSelect(dc, Plugin.MainType.IMPORT,2845 properties.add(new PluginSelect(dc, Plugin.MainType.IMPORT, 2846 2846 Plugin.MainType.OTHER)); 2847 2847 // -
trunk/client/servlet/src/org/proteios/gui/form/ImportFileForm.java
r3805 r3806 38 38 public final Fieldset fs; 39 39 public final ItemIdField itemIdF; 40 public final ImportPluginSelect typeS;40 public final PluginSelect typeS; 41 41 // Define 42 42 … … 53 53 fs.add(itemIdF); 54 54 itemIdF.setValue(file.getId()); 55 typeS = new ImportPluginSelect(file.getDbControl(), MainType.IMPORT);55 typeS = new PluginSelect(file.getDbControl(), MainType.IMPORT); 56 56 fs.add(typeS); 57 57 } -
trunk/client/servlet/src/org/proteios/gui/form/PluginSelect.java
r3805 r3806 44 44 Select box for selecting an import plugin 45 45 */ 46 public class ImportPluginSelect extends Select<VInteger>46 public class PluginSelect extends Select<VInteger> 47 47 { 48 48 public static final VInteger VPARAM = new VInteger("definitionId", 1, true); 49 49 50 public ImportPluginSelect(DbControl dc, Plugin.MainType... types)50 public PluginSelect(DbControl dc, Plugin.MainType... types) 51 51 { 52 super( ImportPluginSelect.VPARAM);52 super(PluginSelect.VPARAM); 53 53 ItemQuery<PluginDefinition> query; 54 54 Expression[] exp;
Note: See TracChangeset
for help on using the changeset viewer.