1 2 3 4 5 6 7 8 9
package syntaxParser; class FieldInterpolationList extends List { public FieldInterpolationList(FieldInterpolationElement elem) { super((IParseTreeNode)elem); } public FieldInterpolationList(FieldInterpolationElement elem, FieldInterpolationList next) { super((IParseTreeNode)elem, (List)next); } }