Ignore:
Timestamp:
Jul 23, 2007, 2:57:39 PM (16 years ago)
Author:
Nicklas Nordborg
Message:

Fixes #687: Make it possible for other plug-ins than the FormulaFilter? to be launched by the 'Filter bioassayset' button

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/www/views/experiments/bioassaysets/analysis_tree.jsp

    r3580 r3592  
    179179  else if (nodeType == Item.TRANSFORMATION)
    180180  {
     181    Transformation t = (Transformation)node;
    181182    folderIcon = "Transformation";
    182     name = ((Transformation)node).getName();
     183    try
     184    {
     185      if (t.getJob().getPluginDefinition().supports("net.sf.basedb.core.plugin.AnalysisFilterPlugin"))
     186      {
     187        folderIcon = "Filter";
     188      }
     189    }
     190    catch (Throwable tt)
     191    {}
     192    name = t.getName();
    183193  }
    184194  else if (nodeType == Item.EXTRAVALUE)
Note: See TracChangeset for help on using the changeset viewer.