diff options
Diffstat (limited to 'src/main/model/util')
-rw-r--r-- | src/main/model/util/Node.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/model/util/Node.java b/src/main/model/util/Node.java index 010a2da..619404f 100644 --- a/src/main/model/util/Node.java +++ b/src/main/model/util/Node.java @@ -1,10 +1,10 @@ package model.util; /** - * yeah there's literally nothing here - * i just need to establish that ElementNode and TextNode both inherit from Node + * yeah there's nothing here + * I just need to establish the inheritance relation of ElementNode and TextNode */ public interface Node { - // Return a representation of the Node + // Return a representation of the Node. Useful for debugging. public String getData(); } |