All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.unlaxer.parser.combinator.ConstructedCombinatorParser Maven / Gradle / Ivy

package org.unlaxer.parser.combinator;

import java.util.List;

import org.unlaxer.Name;
import org.unlaxer.parser.MetaFunctionParser;
import org.unlaxer.parser.Parser;
import org.unlaxer.parser.Parsers;

public abstract class ConstructedCombinatorParser extends ConstructedMultiChildCollectingParser 
	implements MetaFunctionParser {

	private static final long serialVersionUID = -517554162836750441L;
	
	public ConstructedCombinatorParser(List children) {
		super(children);
	}

	public ConstructedCombinatorParser(Parser... children) {
		super(new Parsers(children));
	}

	public ConstructedCombinatorParser(Name name, List children){
		super(name, children);
	}

	public ConstructedCombinatorParser(Name name,Parser... children) {
		super(name,new Parsers(children));	
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy