You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by rv...@apache.org on 2013/06/12 02:05:13 UTC

svn commit: r1492014 - /jena/Experimental/jena-jdbc/jena-jdbc-core/src/main/java/org/apache/jena/jdbc/connections/JenaConnection.java

Author: rvesse
Date: Wed Jun 12 00:05:12 2013
New Revision: 1492014

URL: http://svn.apache.org/r1492014
Log:
Proprogate missing throws declarations

Modified:
    jena/Experimental/jena-jdbc/jena-jdbc-core/src/main/java/org/apache/jena/jdbc/connections/JenaConnection.java

Modified: jena/Experimental/jena-jdbc/jena-jdbc-core/src/main/java/org/apache/jena/jdbc/connections/JenaConnection.java
URL: http://svn.apache.org/viewvc/jena/Experimental/jena-jdbc/jena-jdbc-core/src/main/java/org/apache/jena/jdbc/connections/JenaConnection.java?rev=1492014&r1=1492013&r2=1492014&view=diff
==============================================================================
--- jena/Experimental/jena-jdbc/jena-jdbc-core/src/main/java/org/apache/jena/jdbc/connections/JenaConnection.java (original)
+++ jena/Experimental/jena-jdbc/jena-jdbc-core/src/main/java/org/apache/jena/jdbc/connections/JenaConnection.java Wed Jun 12 00:05:12 2013
@@ -342,8 +342,9 @@ public abstract class JenaConnection imp
      * @param results
      *            Results
      * @return Results after processing by registered post-processors
+     * @throws SQLException 
      */
-    public final com.hp.hpl.jena.query.ResultSet applyPostProcessors(com.hp.hpl.jena.query.ResultSet results) {
+    public final com.hp.hpl.jena.query.ResultSet applyPostProcessors(com.hp.hpl.jena.query.ResultSet results) throws SQLException {
         for (ResultsPostProcessor postProcessor : this.postProcessors) {
             if (postProcessor == null)
                 continue;
@@ -358,8 +359,9 @@ public abstract class JenaConnection imp
      * @param triples
      *            Results
      * @return Results after processing by registered post-processors
+     * @throws SQLException 
      */
-    public final Iterator<Triple> applyPostProcessors(Iterator<Triple> triples) {
+    public final Iterator<Triple> applyPostProcessors(Iterator<Triple> triples) throws SQLException {
         for (ResultsPostProcessor postProcessor : this.postProcessors) {
             if (postProcessor == null)
                 continue;
@@ -374,8 +376,9 @@ public abstract class JenaConnection imp
      * @param result
      *            Result
      * @return Result after processing by registered post-processors
+     * @throws SQLException 
      */
-    public final boolean applyPostProcessors(boolean result) {
+    public final boolean applyPostProcessors(boolean result) throws SQLException {
         for (ResultsPostProcessor postProcessor : this.postProcessors) {
             if (postProcessor == null)
                 continue;
@@ -390,8 +393,9 @@ public abstract class JenaConnection imp
      * @param metadata
      *            Results metadata
      * @return Results metadata after processing by registered post-processors
+     * @throws SQLException 
      */
-    public final SelectResultsMetadata applyPostProcessors(SelectResultsMetadata metadata) {
+    public final SelectResultsMetadata applyPostProcessors(SelectResultsMetadata metadata) throws SQLException {
         for (ResultsPostProcessor postProcessor : this.postProcessors) {
             if (postProcessor == null)
                 continue;
@@ -406,8 +410,9 @@ public abstract class JenaConnection imp
      * @param metadata
      *            Results metadata
      * @return Results metadata after processing by registered post-processors
+     * @throws SQLException 
      */
-    public final TripleResultsMetadata applyPostProcessors(TripleResultsMetadata metadata) {
+    public final TripleResultsMetadata applyPostProcessors(TripleResultsMetadata metadata) throws SQLException {
         for (ResultsPostProcessor postProcessor : this.postProcessors) {
             if (postProcessor == null)
                 continue;
@@ -422,8 +427,9 @@ public abstract class JenaConnection imp
      * @param metadata
      *            Results metadata
      * @return Results metadata after processing by registered post-processors
+     * @throws SQLException 
      */
-    public final AskResultsMetadata applyPostProcessors(AskResultsMetadata metadata) {
+    public final AskResultsMetadata applyPostProcessors(AskResultsMetadata metadata) throws SQLException {
         for (ResultsPostProcessor postProcessor : this.postProcessors) {
             if (postProcessor == null)
                 continue;