提交 600efdce authored 作者: Thomas Mueller's avatar Thomas Mueller

Javadocs.

上级 a6a6fc99
...@@ -307,7 +307,6 @@ public abstract class Query extends Prepared { ...@@ -307,7 +307,6 @@ public abstract class Query extends Prepared {
* @param orderList the order by list * @param orderList the order by list
* @param visible the number of visible columns in the select list * @param visible the number of visible columns in the select list
* @param mustBeInResult all order by expressions must be in the select list * @param mustBeInResult all order by expressions must be in the select list
* @return the new list (expressions may be added)
*/ */
static void initOrder(ArrayList<Expression> expressions, ArrayList<String> expressionSQL, ArrayList<SelectOrderBy> orderList, int visible, static void initOrder(ArrayList<Expression> expressions, ArrayList<String> expressionSQL, ArrayList<SelectOrderBy> orderList, int visible,
boolean mustBeInResult) { boolean mustBeInResult) {
......
...@@ -7,7 +7,6 @@ ...@@ -7,7 +7,6 @@
package org.h2.engine; package org.h2.engine;
import java.util.ArrayList; import java.util.ArrayList;
import org.h2.message.DbException;
import org.h2.table.Table; import org.h2.table.Table;
/** /**
...@@ -167,8 +166,6 @@ public interface DbObject { ...@@ -167,8 +166,6 @@ public interface DbObject {
/** /**
* Check if renaming is allowed. Does nothing when allowed. * Check if renaming is allowed. Does nothing when allowed.
*
* @throws DbException if renaming is not allowed
*/ */
void checkRename(); void checkRename();
......
...@@ -233,7 +233,7 @@ public class FunctionAlias extends SchemaObjectBase { ...@@ -233,7 +233,7 @@ public class FunctionAlias extends SchemaObjectBase {
* *
* @param args the argument list * @param args the argument list
* @return the Java method * @return the Java method
* @throws SQLException if no matching method could be found * @throws DbException if no matching method could be found
*/ */
public JavaMethod findJavaMethod(Expression[] args) { public JavaMethod findJavaMethod(Expression[] args) {
load(); load();
......
...@@ -185,7 +185,6 @@ public abstract class Expression { ...@@ -185,7 +185,6 @@ public abstract class Expression {
* *
* @param session the session * @param session the session
* @param filter the table filter * @param filter the table filter
* @throws SQLException
*/ */
public void createIndexConditions(Session session, TableFilter filter) { public void createIndexConditions(Session session, TableFilter filter) {
// default is do nothing // default is do nothing
......
...@@ -6,6 +6,7 @@ ...@@ -6,6 +6,7 @@
*/ */
package org.h2.expression; package org.h2.expression;
import org.h2.message.DbException;
import org.h2.value.Value; import org.h2.value.Value;
/** /**
...@@ -31,9 +32,9 @@ public interface ParameterInterface { ...@@ -31,9 +32,9 @@ public interface ParameterInterface {
/** /**
* Check if the value is set. * Check if the value is set.
* *
* @throws SQLException if not set. * @throws DbException if not set.
*/ */
void checkSet(); void checkSet() throws DbException;
/** /**
* Is the value of a parameter set. * Is the value of a parameter set.
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论