eu.xenit.apix.dictionary.namespaces.Namespace Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apix-interface Show documentation
Show all versions of apix-interface Show documentation
Xenit API-X Java interface
package eu.xenit.apix.dictionary.namespaces;
import java.util.List;
public class Namespace {
public String URI;
public List prefixes;
public Namespace(String URI, List prefixes) {
this.URI = URI;
this.prefixes = prefixes;
}
public Namespace() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy