/* * DefaultListRule.java * * comments here. * * @author Michiaki Tatsubori * @version %VERSION% %DATE% * @see java.lang.Object * * COPYRIGHT 1998 by Michiaki Tatsubori, ALL RIGHTS RESERVED. */ package openjava.syntax; import openjava.mop.Environment; import openjava.tools.parser.*; import openjava.ptree.*; /** * The class <code>DefaultListRule</code> * <p> * For example * <pre> * </pre> * <p> * * @author Michiaki Tatsubori * @version 1.0 * @since %SOFTWARE% 1.0 * @see java.lang.Object */ public final class DefaultListRule extends SeparatedListRule { private ObjectList list = null; public DefaultListRule( SyntaxRule elementRule, int separator_token, boolean allowsEmpty ) { super( elementRule, separator_token, allowsEmpty ); } public DefaultListRule( SyntaxRule elementRule, int separator_token ) { this( elementRule, separator_token, false ); } protected void initList() { list = new ObjectList(); } protected void addListElement( Object elem ) { list.add( elem ); } protected ParseTree getList() { return list; } }
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 1461 | Julian Hyde |
saffron: First check in. Just documents, and the unmodified OpenJava 20001010 source files. |