Log in Help
Print
Homereleasesgate-8.4-build5748-ALLpluginsOntology_Toolssrccomontotextgatevr 〉 IFolder.java
 
package com.ontotext.gate.vr;

/**Additional interface to be impelmented by the nodes of the tree view.
 * @author Miroslav Goranov*/

import java.util.*;




public interface IFolder
{



  public int getIndexOfChild(Object child);

  public Iterator getChildren();

  public Vector children();

  public String toString();

  public int getChildCount();

  public IFolder getChild(int index);

}