Package org.ontoware.rdf2go.impl.jena

Examples of org.ontoware.rdf2go.impl.jena.GeneralDataType


    URI testA = new URIImpl("test://somedata-A", false);
    // die zweite DatenTyp URI
    URI testB = new URIImpl("test://somedata-B", false);
   
    // der erste BaseDatatype wird von der ersten DatenTyp URI erzeugt
    GeneralDataType BDtestA1 = new GeneralDataType(testA + "");
    // der zweite BaseDatatype ebenso
    GeneralDataType BDtestA2 = new GeneralDataType(testA + "");
    // f�r den dritten BaseDatatype nehmen wir eine neue Datentyp URI
    GeneralDataType BDtestB = new GeneralDataType(testB + "");
   
    // alle Literals haben den gleichen Inhalt
   
    // das erste Literal kriegt den ersten BaseDatatype
    LiteralLabel litA11 = LiteralLabelFactory.create("teststring", "", BDtestA1);
View Full Code Here

TOP

Related Classes of org.ontoware.rdf2go.impl.jena.GeneralDataType

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.