aboutsummaryrefslogtreecommitdiff
path: root/src/main/model/util
diff options
context:
space:
mode:
authorj-james2022-11-27 11:33:28 +0000
committerj-james2022-11-27 11:33:28 +0000
commitf68781603c7c77ac62d90c224e171c31064b50a6 (patch)
tree951812d4c6c0bc55836cfd86d55173301dc5829b /src/main/model/util
parent937412a1cddd18d522c3e2880b3894bad22fcefd (diff)
Refactor Node into html package
Diffstat (limited to 'src/main/model/util')
-rw-r--r--src/main/model/util/Node.java14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/main/model/util/Node.java b/src/main/model/util/Node.java
deleted file mode 100644
index a6fedaf..0000000
--- a/src/main/model/util/Node.java
+++ /dev/null
@@ -1,14 +0,0 @@
-package model.util;
-
-import org.json.JSONObject;
-
-/**
- * This Node represents an abstract relationship between ElementNode and TextNode.
- * It's extremely helpful / necessary for Lists of arbitrary ElementNodes/TextNodes.
- */
-public interface Node {
- // Return a representation of the Node. Useful for debugging.
- public String getData();
-
- public JSONObject serialize();
-}