Package org.ontoware.rdf2go.model.node.impl

Examples of org.ontoware.rdf2go.model.node.impl.PlainLiteralImpl


  @Override
    public void addStatement(String subjectURIString, URI predicate,
      String literal) throws ModelRuntimeException {
    addStatement(new URIImpl(subjectURIString), predicate,
        new PlainLiteralImpl(literal));
  }
View Full Code Here


  @Override
    public void removeStatement(String subjectURIString, URI predicate,
      String literal) throws ModelRuntimeException {
    removeStatement(new URIImpl(subjectURIString), predicate,
        new PlainLiteralImpl(literal));
  }
View Full Code Here

  }

  @Override
    public void removeStatement(Resource subject, URI predicate, String literal)
      throws ModelRuntimeException {
    removeStatement(subject, predicate, new PlainLiteralImpl(literal));
  }
View Full Code Here

TOP

Related Classes of org.ontoware.rdf2go.model.node.impl.PlainLiteralImpl

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.