// Module : $RCSfile: Task.java,v $ // Version : $Revision: 0.0 $ $Author: Patrick $ $Date: 08.11.2011 19:42:29 $ // Project : TaskTreePerformanceTest // Creation : 2011 by Patrick // Copyright : Patrick Harms, 2011 package de.ugoe.cs.quest.tasktrees.treeifc; import java.util.List; /** * TODO comment * * @version $Revision: $ $Date: $ * @author 2011, last modified by $Author: $ */ public interface ITaskTreeNode extends Cloneable { /** * */ public String getName(); /** * */ public String getDescription(); /** * */ public List getChildren(); /** * */ public boolean equals(ITaskTreeNode taskTreeNode); /** * */ public int hashCode(); /** * */ public ITaskTreeNode clone(); }