com.dynatrace.buildtools.graalnative.Xpp3DomUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dynatrace-native-maven-plugin Show documentation
Show all versions of dynatrace-native-maven-plugin Show documentation
A Maven plugin to auto-instrument GraalVM Native projects with the Dynatrace OneAgent
The newest version!
package com.dynatrace.buildtools.graalnative;
import org.codehaus.plexus.util.xml.Xpp3Dom;
public final class Xpp3DomUtils {
public static Xpp3Dom getOrAddChild(final Xpp3Dom parent, final String childName) {
final Xpp3Dom child = parent.getChild(childName);
if (child != null) {
return child;
}
final Xpp3Dom newChild = new Xpp3Dom(childName);
parent.addChild(newChild);
return newChild;
}
private Xpp3DomUtils() {}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy