Package org.ontoware.rdfreactor.schema.rdfs

Examples of org.ontoware.rdfreactor.schema.rdfs.List


    Model model = repositoryModelFactory.createModel();
    model.open();

    URI a = new URIImpl("urn:test:a");
    URI b = new URIImpl("urn:test:b");
    List list = new List(model, "urn:test:list", true);
   
    //assertTrue( list instanceof URI );  --> fails

    model.addStatement(a, b, list.asURI() );
    model.close();
  }
View Full Code Here

TOP

Related Classes of org.ontoware.rdfreactor.schema.rdfs.List

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.