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

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

package org.unlaxer.parser.combinator;

import org.unlaxer.Name;
import org.unlaxer.parser.CollectingParser;
import org.unlaxer.parser.NonTerminallSymbol;
import org.unlaxer.parser.Parser;

public abstract class SingleChildCollectingParser extends ConstructedSingleChildParser implements CollectingParser , NonTerminallSymbol{

	private static final long serialVersionUID = -5599677266143767670L;

	public SingleChildCollectingParser(Name name, Parser child) {
		super(name, child);
	}

	public SingleChildCollectingParser(Parser child) {
		super(child);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy