org.bitbucket.gkutiel.at.NodeWithNoChildren 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 abstract class NodeWithNoChildren implements Node {
@Override final public void add(final Node child) {
throw new RuntimeException("can't add children to me");
}
}