aboutsummaryrefslogtreecommitdiff
path: root/src/main/model/util
diff options
context:
space:
mode:
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();
-}