Changeset 3806


Ignore:
Timestamp:
Sep 1, 2010, 9:26:09 AM (13 years ago)
Author:
Gregory Vincic
Message:

Refs #698. Renaming ImportPluginSelect? to PluginSelect?.

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  
    5757     */
    5858    Integer fileId = getValidInteger(ItemIdField.VPARAM);
    59     Integer pluginDefId = getValidInteger(ImportPluginSelect.VPARAM);
     59    Integer pluginDefId = getValidInteger(PluginSelect.VPARAM);
    6060    /***********************************************************************
    6161     * Create job
  • trunk/client/servlet/src/org/proteios/gui/form/FormFactory.java

    r3805 r3806  
    11241124    if (dc != null)
    11251125    {
    1126       Select<VInteger> typeS = new ImportPluginSelect(dc, types);
     1126      Select<VInteger> typeS = new PluginSelect(dc, types);
    11271127      fs.add(typeS);
    11281128    }
     
    28432843      properties.add(getPlateExternalIdField());
    28442844      // Selector of plugins
    2845       properties.add(new ImportPluginSelect(dc, Plugin.MainType.IMPORT,
     2845      properties.add(new PluginSelect(dc, Plugin.MainType.IMPORT,
    28462846        Plugin.MainType.OTHER));
    28472847      //
  • trunk/client/servlet/src/org/proteios/gui/form/ImportFileForm.java

    r3805 r3806  
    3838 public final Fieldset fs;
    3939 public final ItemIdField itemIdF;
    40  public final ImportPluginSelect typeS;
     40 public final PluginSelect typeS;
    4141  // Define
    4242
     
    5353    fs.add(itemIdF);
    5454    itemIdF.setValue(file.getId());
    55     typeS = new ImportPluginSelect(file.getDbControl(),   MainType.IMPORT);
     55    typeS = new PluginSelect(file.getDbControl(),   MainType.IMPORT);
    5656    fs.add(typeS);
    5757 }
  • trunk/client/servlet/src/org/proteios/gui/form/PluginSelect.java

    r3805 r3806  
    4444 Select box for selecting an import plugin
    4545*/
    46 public class ImportPluginSelect extends Select<VInteger>
     46public class PluginSelect extends Select<VInteger>
    4747{
    4848  public static final VInteger VPARAM = new VInteger("definitionId", 1, true);
    4949
    50   public ImportPluginSelect(DbControl dc, Plugin.MainType... types)
     50  public PluginSelect(DbControl dc, Plugin.MainType... types)
    5151  {
    52     super(ImportPluginSelect.VPARAM);
     52    super(PluginSelect.VPARAM);
    5353  ItemQuery<PluginDefinition> query;
    5454  Expression[] exp;
Note: See TracChangeset for help on using the changeset viewer.