Package com.complexible.common.openrdf.util

Examples of com.complexible.common.openrdf.util.GraphBuildingRDFHandler


   */
    @Override
  public Graph graphQuery(final String theQuery) throws QueryException {
    assertConnected();

    GraphBuildingRDFHandler aHandler = new GraphBuildingRDFHandler();

    try {
      GraphQuery aQuery = mConnection.prepareGraphQuery(mQueryLang, theQuery);
      aQuery.evaluate(aHandler);     
      return aHandler.getGraph();   
    }
    catch (Exception e) {
      throw new QueryException(e);
    }
  }
View Full Code Here

TOP

Related Classes of com.complexible.common.openrdf.util.GraphBuildingRDFHandler

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.