Package org.openrdf.model

Examples of org.openrdf.model.Resource.addProperty()


      bn.addProperty(Concepts.HAS_TYPE.get(gToAdd), vf.createLiteral(this.name.getName(), vf.createURI("http://www.w3.org/2001/XMLSchema#string")));
      bn.addProperty(Concepts.HAS_LIMIT.get(gToAdd), vf.createLiteral(String.valueOf(this.limit), uint));
      if(this.weight != null)
        bn.addProperty(Concepts.HAS_WEIGHT.get(gToAdd), vf.createLiteral(String.valueOf(this.weight), uint));
     
      r.addProperty(Concepts.HAS_RECOMMENDATION.get(gToAdd), bn);

      SesameWrapper.addGraph(Repository.FOAFREALM_REPOSITORY.getLocalRepository(), gToAdd);
    } catch (GraphException e) {
      Logger.getLogger("org.corrib.s3b.recommendations").log(Level.SEVERE, e.toString(), e);
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.