All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eu.xenit.apix.dictionary.namespaces.Namespace Maven / Gradle / Ivy

There is a newer version: 4.1.2
Show newest version
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