1   /*
2    * Created on 09.mar.2003
3    *
4    */
5   package net.sf.panoptes.model.component;
6   
7   import net.sf.panoptes.model.node.INode;
8   
9   /***
10   * Objects to be added to the registry need to implement this interface.
11   * IComponent extend INode, so they can be displayed in the hierarchical tree. This
12   * last point, however, is a bit undecided at the moment.. 
13   * 
14   * @author Dag Liodden
15   * @see net.sf.panoptes.model.node.INode
16   */
17  public interface IComponent extends INode {
18  
19  }
This page was automatically generated by Maven