summaryrefslogtreecommitdiffstats
path: root/src/syntaxParser/InterpolationMethodList.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/syntaxParser/InterpolationMethodList.java')
-rw-r--r--src/syntaxParser/InterpolationMethodList.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/syntaxParser/InterpolationMethodList.java b/src/syntaxParser/InterpolationMethodList.java
new file mode 100644
index 0000000..bfec142
--- /dev/null
+++ b/src/syntaxParser/InterpolationMethodList.java
@@ -0,0 +1,6 @@
+package syntaxParser;
+
+class InterpolationMethodList extends List {
+ public InterpolationMethodList(FieldInterpolationMethod elem) { super((IParseTreeNode)elem); }
+ public InterpolationMethodList(FieldInterpolationMethod elem, InterpolationMethodList next) { super((IParseTreeNode)elem, (List)next); }
+}