Commit 9917dcba by Michael Koch Committed by Michael Koch

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

	* java/net/java/net/URLStreamHandlerFactory.java
	(createURLStreamHandler): Removed redundant "public" modifier.
	* java/sql/DatabaseMetaData.java:
	(DatabaseMetaData):  Readded accidently removed "public" modifier.
	* java/sql/ParameterMetaData.java:
	(ParameterMetaData): Readded accidently removed "public" modifier.
	* java/sql/PreparedStatement.java:
	(PreparedStatement): Readded accidently removed "public" modifier.
	* java/sql/Ref.java:
	(Ref): Readded accidently removed "public" modifier.

From-SVN: r72419
parent 1adef668
2003-10-13 Michael Koch <konqueror@gmx.de> 2003-10-13 Michael Koch <konqueror@gmx.de>
* java/net/java/net/URLStreamHandlerFactory.java
(createURLStreamHandler): Removed redundant "public" modifier.
* java/sql/DatabaseMetaData.java:
(DatabaseMetaData): Readded accidently removed "public" modifier.
* java/sql/ParameterMetaData.java:
(ParameterMetaData): Readded accidently removed "public" modifier.
* java/sql/PreparedStatement.java:
(PreparedStatement): Readded accidently removed "public" modifier.
* java/sql/Ref.java:
(Ref): Readded accidently removed "public" modifier.
2003-10-13 Michael Koch <konqueror@gmx.de>
* java/nio/Buffer.java * java/nio/Buffer.java
(hasRemaining): Made implementation more clear. (hasRemaining): Made implementation more clear.
* java/nio/MappedByteBuffer.java * java/nio/MappedByteBuffer.java
......
...@@ -61,7 +61,7 @@ public interface URLStreamHandlerFactory ...@@ -61,7 +61,7 @@ public interface URLStreamHandlerFactory
* *
* @return The <code>URLStreamHandler</code> for the specified protocol * @return The <code>URLStreamHandler</code> for the specified protocol
*/ */
public URLStreamHandler createURLStreamHandler(String protocol); URLStreamHandler createURLStreamHandler (String protocol);
} // interface URLStreamHandlerFactory } // interface URLStreamHandlerFactory
...@@ -37,7 +37,7 @@ exception statement from your version. */ ...@@ -37,7 +37,7 @@ exception statement from your version. */
package java.sql; package java.sql;
interface DatabaseMetaData public interface DatabaseMetaData
{ {
/** /**
* It is unknown whether or not the procedure returns a result. * It is unknown whether or not the procedure returns a result.
......
...@@ -40,7 +40,7 @@ package java.sql; ...@@ -40,7 +40,7 @@ package java.sql;
/** /**
* @since 1.4 * @since 1.4
*/ */
interface ParameterMetaData public interface ParameterMetaData
{ {
int parameterNoNulls = 0; int parameterNoNulls = 0;
......
...@@ -51,7 +51,7 @@ import java.util.Calendar; ...@@ -51,7 +51,7 @@ import java.util.Calendar;
* *
* @author Aaron M. Renn (arenn@urbanophile.com) * @author Aaron M. Renn (arenn@urbanophile.com)
*/ */
interface PreparedStatement extends Statement public interface PreparedStatement extends Statement
{ {
/** /**
* This method executes a prepared SQL query and returns its ResultSet. * This method executes a prepared SQL query and returns its ResultSet.
......
...@@ -46,7 +46,7 @@ import java.util.Map; ...@@ -46,7 +46,7 @@ import java.util.Map;
* @author Aaron M. Renn (arenn@urbanophile.com) * @author Aaron M. Renn (arenn@urbanophile.com)
* @since 1.2 * @since 1.2
*/ */
interface Ref public interface Ref
{ {
/** /**
* This method returns the fully qualified name of the SQL structured * This method returns the fully qualified name of the SQL structured
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment