Array.java, [...]: Removed redundant modifiers.

2003-10-11  Michael Koch  <konqueror@gmx.de>

	* java/sql/Array.java,
	java/sql/Blob.java,
	java/sql/CallableStatement.java,
	java/sql/Clob.java,
	java/sql/Connection.java,
	java/sql/DatabaseMetaData.java,
	java/sql/Driver.java,
	java/sql/ParameterMetaData.java,
	java/sql/PreparedStatement.java,
	java/sql/Ref.java,
	java/sql/ResultSet.java,
	java/sql/ResultSetMetaData.java,
	java/sql/SQLData.java,
	java/sql/SQLInput.java,
	java/sql/SQLOutput.java,
	java/sql/Savepoint.java,
	java/sql/Statement.java,
	java/sql/Struct.java:
	Removed redundant modifiers.

From-SVN: r72356
This commit is contained in:
Michael Koch 2003-10-11 18:49:51 +00:00 committed by Michael Koch
parent eb0043a057
commit afe6016980
19 changed files with 724 additions and 702 deletions

View file

@ -40,64 +40,64 @@ package java.sql;
/**
* @since 1.4
*/
public interface ParameterMetaData
interface ParameterMetaData
{
public static final int parameterNoNulls = 0;
int parameterNoNulls = 0;
public static final int parameterNullable = 1;
int parameterNullable = 1;
public static final int parameterNullableUnknown = 2;
int parameterNullableUnknown = 2;
public static final int parameterModeUnknown = 0;
int parameterModeUnknown = 0;
public static final int parameterModeIn = 1;
int parameterModeIn = 1;
public static final int parameterModeInOut = 2;
int parameterModeInOut = 2;
public static final int parameterModeOut = 4;
int parameterModeOut = 4;
/**
* @since 1.4
*/
public int getParameterCount() throws SQLException;
int getParameterCount() throws SQLException;
/**
* @since 1.4
*/
public int isNullable(int param) throws SQLException;
int isNullable(int param) throws SQLException;
/**
* @since 1.4
*/
public boolean isSigned(int param) throws SQLException;
boolean isSigned(int param) throws SQLException;
/**
* @since 1.4
*/
public int getPrecision(int param) throws SQLException;
int getPrecision(int param) throws SQLException;
/**
* @since 1.4
*/
public int getScale(int param) throws SQLException;
int getScale(int param) throws SQLException;
/**
* @since 1.4
*/
public int getParameterType(int param) throws SQLException;
int getParameterType(int param) throws SQLException;
/**
* @since 1.4
*/
public String getParameterTypeName(int param) throws SQLException;
String getParameterTypeName(int param) throws SQLException;
/**
* @since 1.4
*/
public String getParameterClassName(int param) throws SQLException;
String getParameterClassName(int param) throws SQLException;
/**
* @since 1.4
*/
public int getParameterMode(int param) throws SQLException;
int getParameterMode(int param) throws SQLException;
}