Package org.deri.grefine.rdf.vocab

Examples of org.deri.grefine.rdf.vocab.PrefixExistException


    }

    public void addPrefix(String name, String uri) throws PrefixExistException{
      synchronized(prefixesMap){
        if(this.prefixesMap.containsKey(name)){
          throw new PrefixExistException(name + " already defined");
        }
        this.prefixesMap.put(name, new Vocabulary(name, uri));
      }
    }
View Full Code Here

TOP

Related Classes of org.deri.grefine.rdf.vocab.PrefixExistException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.