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

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

package org.unlaxer.parser.combinator;

import java.util.List;

import org.unlaxer.Name;
import org.unlaxer.parser.AbstractParser;
import org.unlaxer.parser.ChildOccurs;
import org.unlaxer.parser.Parser;

public abstract class NoneChildParser extends AbstractParser {

	private static final long serialVersionUID = 6972225718514512056L;

	public NoneChildParser() {
		super();
	}

	public NoneChildParser(Name name) {
		super(name);
	}

	@Override
	public ChildOccurs getChildOccurs() {
		return ChildOccurs.none;
	}

	@Override
	public void prepareChildren(List childrenContainer) {
		
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy