/* Generated By:JJTree: Do not edit this line. ASTIdentList.java */ package com.framsticks.framclipse.internal.parser; import java.util.ArrayList; import java.util.Collections; import java.util.List; public class ASTIdentList extends SimpleNode { private List idents = new ArrayList(); public ASTIdentList(int id) { super(id); } public ASTIdentList(FramclipseNonScriptParser p, int id) { super(p, id); } public List getIdents() { return Collections.unmodifiableList(idents); } public void addIdent(String id) { if(!idents.contains(id)) idents.add(id); } }