org.unlaxer.parser.LazyParserChildSpecifier Maven / Gradle / Ivy
package org.unlaxer.parser;
import java.util.List;
public interface LazyParserChildSpecifier extends LazyInstance{
public Parser getLazyParser();
@Override
public default void prepareChildren(List childrenContainer) {
if(childrenContainer.isEmpty()){
childrenContainer.add(getLazyParser());
}
}
} © 2015 - 2025 Weber Informatics LLC | Privacy Policy