Skip to content

Commit

Permalink
Fix javadoc.
Browse files Browse the repository at this point in the history
git-svn-id: https://olap4j.svn.sourceforge.net/svnroot/olap4j/trunk@317 c6a108a4-781c-0410-a6c6-c2d559e19af0
  • Loading branch information
julianhyde committed May 30, 2010
1 parent d872dca commit 24b7010
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions src/org/olap4j/PreparedOlapStatement.java
Original file line number Diff line number Diff line change
Expand Up @@ -97,15 +97,17 @@ public interface PreparedOlapStatement
/**
* Returns whether the value of the designated parameter is set.
*
* <p>To set the value call one of the {@link #setInt setXxx} methods. To
* <p>Note that you cannot tell whether the parameter is set by looking to
* see whether the value is {@code null}, because {@code null} is a valid
* parameter value. When a parameter is not set, its value is derived by
* evaluating its default expression.
*
* <p>To set the value call one of the {@link #setObject setXxx} methods. To
* unset the value, call {@link #unset}.
*
* @param parameterIndex the first parameter is 1, the second is 2, ...
* @return whether the parameter's value has been set
* <code>ParameterMetaData.parameterNoNulls</code>,
* <code>ParameterMetaData.parameterNullable</code>, or
* <code>ParameterMetaData.parameterNullableUnknown</code>
* @exception java.sql.SQLException if a database access error occurs
* @exception java.sql.SQLException if a database access error occurs
*/
boolean isSet(int parameterIndex) throws SQLException;

Expand All @@ -115,7 +117,7 @@ public interface PreparedOlapStatement
* @see #isSet(int)
*
* @param parameterIndex the first parameter is 1, the second is 2, ...
* @exception java.sql.SQLException if a database access error occurs
* @exception java.sql.SQLException if a database access error occurs
*/
void unset(int parameterIndex) throws SQLException;
}
Expand Down

0 comments on commit 24b7010

Please sign in to comment.