aboutsummaryrefslogtreecommitdiff
path: root/src/main/model/util/Node.java
diff options
context:
space:
mode:
authorj-james2022-10-17 13:54:35 +0000
committerj-james2022-10-17 13:54:35 +0000
commitbfa72127cf120f0e98410b45a043b95ad522b729 (patch)
tree877f2a3e38d2a65213794fa0877c84e434c9611b /src/main/model/util/Node.java
parent453372247c8c173c16fa2234b9645bf7a542ed8d (diff)
Sweeping refactor to check CheckStyle boxes
Diffstat (limited to 'src/main/model/util/Node.java')
-rw-r--r--src/main/model/util/Node.java6
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();
}