![JAR search and dependency download from the Maven repository](/logo.png)
org.anarres.graphviz.parser.node.NodeAccessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graphviz-parser Show documentation
Show all versions of graphviz-parser Show documentation
GraphViz graph builder and parser.
package org.anarres.graphviz.parser.node;
import javax.annotation.CheckForNull;
import javax.annotation.Nonnull;
public class NodeAccessor {
private NodeAccessor() {
}
public static void setParent(@Nonnull Node node, @CheckForNull Node parent) {
node.parent(parent);
}
public static void removeChild(@Nonnull Node parent, @Nonnull Node child) {
parent.removeChild(child);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy