org.bitbucket.gkutiel.at.NodeRoot Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of at-core Show documentation
Show all versions of at-core Show documentation
A parser and renderer engine for the at syntax
package org.bitbucket.gkutiel.at;
public class NodeRoot extends NodeWithChildren {
@Override public void accept(final Visitor visitor) {
visitor.visit(children);
}
}