![JAR search and dependency download from the Maven repository](/logo.png)
org.bitbucket.gkutiel.at.NodeAt 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;
import static java.util.Collections.unmodifiableList;
public class NodeAt extends NodeWithChildren {
final At at;
public NodeAt(final At at) {
this.at = at;
}
@Override public void accept(final Visitor visitor) {
visitor.visitAt(at, unmodifiableList(children));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy