io.github.dumijdev.dpxml.model.XML Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dp-xml Show documentation
Show all versions of dp-xml Show documentation
A Java lib to convert xml to POJO and POJO to xml
package io.github.dumijdev.dpxml.model;
public class XML extends XMLNode {
public XML() {
}
public XML(Node parent) {
super(parent);
}
public XML(String name) {
super(name);
}
}