org.unlaxer.parser.combinator.ConstructedOccurs Maven / Gradle / Ivy
package org.unlaxer.parser.combinator;
import java.util.List;
import org.unlaxer.Name;
import org.unlaxer.Parsed;
import org.unlaxer.TokenKind;
import org.unlaxer.context.ParseContext;
import org.unlaxer.parser.CollectingParser;
import org.unlaxer.parser.ConstructedAbstractParser;
import org.unlaxer.parser.Parser;
public abstract class ConstructedOccurs extends ConstructedAbstractParser implements Occurs , CollectingParser{
private static final long serialVersionUID = 7296599133826276749L;
public ConstructedOccurs(List children) {
super(children);
}
public ConstructedOccurs(Name name, List children) {
super(name, children);
}
@Override
public Parsed parse(ParseContext parseContext, TokenKind tokenKind, boolean invertMatch) {
return Occurs.super.parse(parseContext, tokenKind, invertMatch);
}
} © 2015 - 2025 Weber Informatics LLC | Privacy Policy