com.sun.msv.reader.trex.ng.ListState Maven / Gradle / Ivy
/*
* @(#)$Id: ListState.java,v 1.3 2003/06/09 20:37:31 kk122374 Exp $
*
* Copyright 2001 Sun Microsystems, Inc. All Rights Reserved.
*
* This software is the proprietary information of Sun Microsystems, Inc.
* Use is subject to license terms.
*
*/
package com.sun.msv.reader.trex.ng;
import com.sun.msv.grammar.Expression;
import com.sun.msv.reader.SequenceState;
/**
* state that parses <list> pattern of RELAX NG.
*
* @author Kohsuke KAWAGUCHI
*/
public class ListState extends SequenceState {
protected Expression annealExpression( Expression exp ) {
return reader.pool.createList(exp);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy