
msv.tahiti.src.com.sun.tahiti.runtime.ll.LLElementExp Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jaxb1-impl Show documentation
Show all versions of jaxb1-impl Show documentation
JAXB (JSR 222) reference implementation - JAXB1 build
The newest version!
/*
* @(#)$Id: LLElementExp.java 923 2001-07-20 20:45:03Z Bear $
*
* 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.tahiti.runtime.ll;
import com.sun.msv.grammar.NameClass;
import com.sun.msv.grammar.Expression;
import com.sun.msv.grammar.trex.ElementPattern;
/**
* ElementExp with LL parser table.
*
* @author
* Kohsuke KAWAGUCHI
*/
public class LLElementExp extends ElementPattern {
/** LL parser table for this rule. */
public LLParserTable parserTable;
public LLElementExp( NameClass nc ) {
this(nc,Expression.nullSet);
}
public LLElementExp( NameClass nc, Expression body ) {
super(nc,body);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy