You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@metamodel.apache.org by ka...@apache.org on 2017/07/22 16:57:17 UTC

[02/33] metamodel git commit: Added javadoc for METAMODEL-6

Added javadoc for METAMODEL-6

Project: http://git-wip-us.apache.org/repos/asf/metamodel/repo
Commit: http://git-wip-us.apache.org/repos/asf/metamodel/commit/774cb596
Tree: http://git-wip-us.apache.org/repos/asf/metamodel/tree/774cb596
Diff: http://git-wip-us.apache.org/repos/asf/metamodel/diff/774cb596

Branch: refs/heads/master
Commit: 774cb596e70ab939b262218f7d908cd5164161ba
Parents: a15ca72
Author: Kasper Sørensen <i....@gmail.com>
Authored: Fri Dec 11 11:28:33 2015 +0100
Committer: Kasper Sørensen <i....@gmail.com>
Committed: Fri Dec 11 11:28:33 2015 +0100

----------------------------------------------------------------------
 .../java/org/apache/metamodel/UpdateSummary.java     | 15 +++++++++++++++
 1 file changed, 15 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/metamodel/blob/774cb596/core/src/main/java/org/apache/metamodel/UpdateSummary.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/org/apache/metamodel/UpdateSummary.java b/core/src/main/java/org/apache/metamodel/UpdateSummary.java
index 57ca52f..4124b0a 100644
--- a/core/src/main/java/org/apache/metamodel/UpdateSummary.java
+++ b/core/src/main/java/org/apache/metamodel/UpdateSummary.java
@@ -31,10 +31,25 @@ package org.apache.metamodel;
  */
 public interface UpdateSummary {
 
+    /**
+     * Gets the number of inserted rows, or null if this number is unknown.
+     * 
+     * @return a row count or null if the number is unknown.
+     */
     public Integer getInsertedRows();
 
+    /**
+     * Gets the number of updated rows, or null if this number is unknown.
+     * 
+     * @return a row count or null if the number is unknown.
+     */
     public Integer getUpdatedRows();
 
+    /**
+     * Gets the number of deleted rows, or null if this number is unknown.
+     * 
+     * @return a row count or null if the number is unknown.
+     */
     public Integer getDeletedRows();
 
     /**