Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: org/embl/ebi/escience/scuflui/workbench/Scavenger.java


1   /**
2    * This file is a component of the Taverna project,
3    * and is licensed under the GNU LGPL.
4    * Copyright Tom Oinn, EMBL-EBI
5    */
6   package org.embl.ebi.escience.scuflui.workbench;
7   import javax.swing.tree.DefaultMutableTreeNode;
8   
9   import java.lang.Object;
10  
11  
12  
13  /**
14   * A subclass of DefaultMutableTreeNode that should
15   * be subclassed to create particular scavengers for
16   * different types of processor
17   * @author Tom Oinn
18   */
19  public abstract class Scavenger extends DefaultMutableTreeNode {
20  
21      public Scavenger(Object userObject) {
22    super(userObject);
23      }
24  
25  }