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

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

package org.unlaxer.parser.combinator;

import java.util.Optional;

import org.unlaxer.Name;
import org.unlaxer.RecursiveMode;

public abstract class NotASTChildrenOnlyLazyChoice extends LazyChoice{

	private static final long serialVersionUID = -778542274328850589L;

	public NotASTChildrenOnlyLazyChoice() {
		super();
	}

	public NotASTChildrenOnlyLazyChoice(Name name) {
		super(name);
	}
	
	
	@Override
	public Optional getNotAstNodeSpecifier() {
		return Optional.of(RecursiveMode.childrenOnly);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy