Package com.hp.hpl.jena.rdf.model

Examples of com.hp.hpl.jena.rdf.model.Bag


  public void testGetBag()
  {
    final String uri = "http://aldabaran.hpl.hp.com/rdf/test4/" + 150;
    model.createBag(uri);
    final Bag b = model.getBag(uri);
    Assert.assertEquals(uri, b.getURI());
    Assert.assertTrue(model.contains(b, RDF.type, RDF.Bag));
  }
View Full Code Here

TOP

Related Classes of com.hp.hpl.jena.rdf.model.Bag

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.