// Module : $RCSfile: TreeNode.java,v $ // Version : $Revision: 0.0 $ $Author: Patrick $ $Date: 06.11.2011 11:00:46 $ // Project : TaskTreePerformanceTest // Creation : 2011 by Patrick // Copyright : Patrick Harms, 2011 package de.ugoe.cs.quest.tasktrees.treeimpl; import java.util.ArrayList; import java.util.List; import de.ugoe.cs.quest.tasktrees.treeifc.ITaskTreeNode; /** * TODO comment * * @version $Revision: $ $Date: $ * @author 2011, last modified by $Author: $ */ public class TaskTreeNode implements ITaskTreeNode { /** */ private static int temporalId = 0; /** */ private String name; /** */ private String description; /** */ private int id; /** children */ private List children; /** * */ public TaskTreeNode(String name) { this.name = name; id = getNewId(); } /** * TODO: comment * * @return */ private static synchronized int getNewId() { if (temporalId == Integer.MAX_VALUE) { temporalId = 0; } return temporalId++; } /** * @return Returns the name. */ public String getName() { return name; } /* * (non-Javadoc) * * @see de.ugoe.cs.tasktree.treeifc.TaskTreeNode#getDescription() */ @Override public String getDescription() { return description; } /** * */ public synchronized List getChildren() { if ((children == null) || (children.size() == 0)) { return new ArrayList(); } return children.subList(0, children.size()); } /* * (non-Javadoc) * * @see de.ugoe.cs.quest.tasktrees.treeifc.TaskTreeNode#equals(TaskTreeNode) */ @Override public boolean equals(ITaskTreeNode taskTreeNode) { if (!this.getClass().isInstance(taskTreeNode)) { return false; } if (taskTreeNode.hashCode() != hashCode()) { return false; } TaskTreeNode other = (TaskTreeNode) taskTreeNode; if (id != other.id) { return false; } if (!name.equals(other.name)) { return false; } synchronized (other) { if (children == null) { return (other.children == null); } else if (other.children == null) { return (children == null); } else if (other.children.size() != children.size()) { return false; } for (int i = 0; i < children.size(); i++) { if (!children.get(i).equals(other.children.get(i))) { return false; } } } return true; } /* * (non-Javadoc) * * @see java.lang.Object#hashCode() */ @Override public synchronized int hashCode() { return getClass().getSimpleName().hashCode(); } /* * (non-Javadoc) * * @see java.lang.Object#toString() */ @Override public synchronized String toString() { if (children == null) { return name + "(" + id + ")"; } else { return name + "(" + id + ", " + children.size() + " children)"; } } /** * TODO: comment * * @param i * @return */ void setDescription(String description) { this.description = description; } /** * */ synchronized void addChild(ITaskTreeNode child) { if (children == null) { children = new ArrayList(); } children.add(child); } /** * */ synchronized void addChild(int index, ITaskTreeNode child) { if (children == null) { children = new ArrayList(); } children.add(index, child); } /** * TODO: comment * * @param i * @return */ synchronized ITaskTreeNode removeChild(int index) { return children.remove(index); } /* * (non-Javadoc) * * @see java.lang.Object#clone() */ @Override public ITaskTreeNode clone() { TaskTreeNode clone = null; try { clone = (TaskTreeNode) super.clone(); if (children != null) { clone.children = new ArrayList(); for (ITaskTreeNode child : children) { clone.children.add(child.clone()); } } } catch (CloneNotSupportedException e) { // this should never happen. Therefore simply dump the exception e.printStackTrace(); } return clone; } }