org.topbraid.sparql
Interface ISPARQLHandler

All Known Implementing Classes:
ExportResultSetAction

public interface ISPARQLHandler

An interface for objects that can handle the results of a SPARQL execution in the SPARQL View. This is for example used by the Export action to save the results into a file.

Author:
Holger Knublauch

Method Summary
 void handleAsk(java.util.List<java.lang.Integer> fails)
           
 void handleConstructedModel(com.hp.hpl.jena.rdf.model.Model model)
           
 void handleResultSet(com.hp.hpl.jena.query.ResultSet rs)
           
 void handleResultSet(com.hp.hpl.jena.query.ResultSet rs, org.eclipse.core.runtime.IProgressMonitor monitor)
          Handles the ResultSet from within the progress dialog.
 

Method Detail

handleAsk

void handleAsk(java.util.List<java.lang.Integer> fails)

handleConstructedModel

void handleConstructedModel(com.hp.hpl.jena.rdf.model.Model model)

handleResultSet

void handleResultSet(com.hp.hpl.jena.query.ResultSet rs)

handleResultSet

void handleResultSet(com.hp.hpl.jena.query.ResultSet rs,
                     org.eclipse.core.runtime.IProgressMonitor monitor)
Handles the ResultSet from within the progress dialog. Note that this is called from a non-UI thread.

Parameters:
rs -
monitor -