summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'ast-to-instr/src/VHDLNode.java')
-rw-r--r--ast-to-instr/src/VHDLNode.java25
1 files changed, 25 insertions, 0 deletions
diff --git a/ast-to-instr/src/VHDLNode.java b/ast-to-instr/src/VHDLNode.java
new file mode 100644
index 0000000..1774672
--- /dev/null
+++ b/ast-to-instr/src/VHDLNode.java
@@ -0,0 +1,25 @@
+import org.w3c.dom.Node;
+
+public abstract class VHDLNode extends ParsableXML
+{
+ protected final IDs next_node;
+ protected final int depth;
+ protected final String[] attributes;
+
+ public VHDLNode
+ (
+ final IDs parent_id,
+ final Node xml_node,
+ final IDs next_node,
+ final int depth,
+ final String[] attributes
+ )
+ {
+ super(parent_id, xml_node);
+
+ this.next_node = next_node;
+ this.depth = depth;
+ this.attributes = attributes;
+ }
+
+}