diff java/src/uk/ac/qmul/eecs/ccmi/diagrammodel/EdgeReferenceHolderMutableTreeNode.java @ 3:9e67171477bc

PHANTOM Omni Heptic device release
author Fiore Martin <fiore@eecs.qmul.ac.uk>
date Wed, 25 Apr 2012 17:09:09 +0100
parents 9418ab7b7f3f
children
line wrap: on
line diff
--- a/java/src/uk/ac/qmul/eecs/ccmi/diagrammodel/EdgeReferenceHolderMutableTreeNode.java	Mon Feb 06 12:54:06 2012 +0000
+++ b/java/src/uk/ac/qmul/eecs/ccmi/diagrammodel/EdgeReferenceHolderMutableTreeNode.java	Wed Apr 25 17:09:09 2012 +0100
@@ -20,14 +20,12 @@
 
 /**
  * This class is a special tree node which holds the EdgeReferenceMutableTreeNode
- * in the tree layout, where It is normally placed as a Node's child.
- * 
- *
+ * in the tree layout, where It is normally placed as a {@code DiagramNode}'s child.
  */
 @SuppressWarnings("serial")
-public class EdgeReferenceHolderMutableTreeNode extends DiagramModelTreeNode {
+public class EdgeReferenceHolderMutableTreeNode extends DiagramTreeNode {
 
-	public EdgeReferenceHolderMutableTreeNode(Object userObj){
+	EdgeReferenceHolderMutableTreeNode(Object userObj){
 		super(userObj);
 	}
 	
@@ -39,8 +37,9 @@
 	}
 	
 	/**
-	 * Return a String representing this object for this tree node in a way more suitable 
-	 * for a text to speech synthesizer to read, than toString(). 
+	 * Returns a String representing this object for this tree node in a way more suitable 
+	 * for a text to speech synthesizer to read, than {@code toString()}. 
+	 * 
 	 * @return a String suitable for text to speech synthesis
 	 */
 	@Override