org.jbpt.pm.epc.Document Maven / Gradle / Ivy
package org.jbpt.pm.epc;
import org.jbpt.pm.DataNode;
/**
* EPC document implementation
*
* @author Artem Polyvyanyy, Cindy F?hnrich, Tobias Hoppe
*/
public class Document extends DataNode implements IDocument {
public Document() {
super();
}
public Document(String name, String desc) {
super(name, desc);
}
public Document(String name) {
super(name);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy