Package puc.tecweb.trust.layer.rdf.types

Examples of puc.tecweb.trust.layer.rdf.types.URINode


    } else
      return null;
  }

  public URINode getPredicate() {
    return new URINode(statement.getPredicate().getURI());
  }
View Full Code Here


    Resource subject = statement.getSubject();

    if (subject instanceof BNode)
      return new BlankNode(((BNode) subject).getID());
    else if (subject instanceof URI)
      return new URINode(((URI) subject).getURI());
    else
      return null;
  }
View Full Code Here

TOP

Related Classes of puc.tecweb.trust.layer.rdf.types.URINode

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.