diff options
Diffstat (limited to 'libjava/classpath/javax/sql')
-rw-r--r-- | libjava/classpath/javax/sql/ConnectionEvent.java | 6 | ||||
-rw-r--r-- | libjava/classpath/javax/sql/ConnectionEventListener.java | 6 | ||||
-rw-r--r-- | libjava/classpath/javax/sql/ConnectionPoolDataSource.java | 6 | ||||
-rw-r--r-- | libjava/classpath/javax/sql/DataSource.java | 6 | ||||
-rw-r--r-- | libjava/classpath/javax/sql/PooledConnection.java | 6 | ||||
-rw-r--r-- | libjava/classpath/javax/sql/RowSet.java | 6 | ||||
-rw-r--r-- | libjava/classpath/javax/sql/RowSetEvent.java | 6 | ||||
-rw-r--r-- | libjava/classpath/javax/sql/RowSetInternal.java | 6 | ||||
-rw-r--r-- | libjava/classpath/javax/sql/RowSetListener.java | 6 | ||||
-rw-r--r-- | libjava/classpath/javax/sql/RowSetMetaData.java | 6 | ||||
-rw-r--r-- | libjava/classpath/javax/sql/RowSetReader.java | 6 | ||||
-rw-r--r-- | libjava/classpath/javax/sql/RowSetWriter.java | 6 | ||||
-rw-r--r-- | libjava/classpath/javax/sql/XAConnection.java | 4 | ||||
-rw-r--r-- | libjava/classpath/javax/sql/XADataSource.java | 6 |
14 files changed, 41 insertions, 41 deletions
diff --git a/libjava/classpath/javax/sql/ConnectionEvent.java b/libjava/classpath/javax/sql/ConnectionEvent.java index 0d20b1afb83..3821f4100b0 100644 --- a/libjava/classpath/javax/sql/ConnectionEvent.java +++ b/libjava/classpath/javax/sql/ConnectionEvent.java @@ -1,4 +1,4 @@ -/* ConnectionEvent.java +/* ConnectionEvent.java Copyright (C) 2002, 2003 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -7,7 +7,7 @@ GNU Classpath is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. - + GNU Classpath is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU @@ -44,7 +44,7 @@ import java.util.EventObject; /** * @since 1.4 */ -public class ConnectionEvent extends EventObject +public class ConnectionEvent extends EventObject { private static final long serialVersionUID = -4843217645290030002L; diff --git a/libjava/classpath/javax/sql/ConnectionEventListener.java b/libjava/classpath/javax/sql/ConnectionEventListener.java index 08011896688..b9b69d34c6f 100644 --- a/libjava/classpath/javax/sql/ConnectionEventListener.java +++ b/libjava/classpath/javax/sql/ConnectionEventListener.java @@ -1,4 +1,4 @@ -/* ConnectionEventListener.java +/* ConnectionEventListener.java Copyright (C) 2002 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -7,7 +7,7 @@ GNU Classpath is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. - + GNU Classpath is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU @@ -43,7 +43,7 @@ import java.util.EventListener; /** * @since 1.4 */ -public interface ConnectionEventListener extends EventListener +public interface ConnectionEventListener extends EventListener { /** * @since 1.4 diff --git a/libjava/classpath/javax/sql/ConnectionPoolDataSource.java b/libjava/classpath/javax/sql/ConnectionPoolDataSource.java index 99661d7f40f..545af3fe9fa 100644 --- a/libjava/classpath/javax/sql/ConnectionPoolDataSource.java +++ b/libjava/classpath/javax/sql/ConnectionPoolDataSource.java @@ -1,4 +1,4 @@ -/* ConnectionPoolDataSource.java +/* ConnectionPoolDataSource.java Copyright (C) 2002 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -7,7 +7,7 @@ GNU Classpath is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. - + GNU Classpath is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU @@ -44,7 +44,7 @@ import java.sql.SQLException; /** * @since 1.4 */ -public interface ConnectionPoolDataSource +public interface ConnectionPoolDataSource { /** * @since 1.4 diff --git a/libjava/classpath/javax/sql/DataSource.java b/libjava/classpath/javax/sql/DataSource.java index de1bc82679f..da201749498 100644 --- a/libjava/classpath/javax/sql/DataSource.java +++ b/libjava/classpath/javax/sql/DataSource.java @@ -1,4 +1,4 @@ -/* DataSource.java +/* DataSource.java Copyright (C) 2002 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -7,7 +7,7 @@ GNU Classpath is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. - + GNU Classpath is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU @@ -45,7 +45,7 @@ import java.sql.SQLException; /** * @since 1.4 */ -public interface DataSource +public interface DataSource { /** * @since 1.4 diff --git a/libjava/classpath/javax/sql/PooledConnection.java b/libjava/classpath/javax/sql/PooledConnection.java index 1fb23df1447..8a839ba7da4 100644 --- a/libjava/classpath/javax/sql/PooledConnection.java +++ b/libjava/classpath/javax/sql/PooledConnection.java @@ -1,4 +1,4 @@ -/* PooledConnection.java +/* PooledConnection.java Copyright (C) 2002 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -7,7 +7,7 @@ GNU Classpath is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. - + GNU Classpath is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU @@ -44,7 +44,7 @@ import java.sql.SQLException; /** * @since 1.4 */ -public interface PooledConnection +public interface PooledConnection { /** * @since 1.4 diff --git a/libjava/classpath/javax/sql/RowSet.java b/libjava/classpath/javax/sql/RowSet.java index 2a9ad2784ee..ca7f729871c 100644 --- a/libjava/classpath/javax/sql/RowSet.java +++ b/libjava/classpath/javax/sql/RowSet.java @@ -1,4 +1,4 @@ -/* RowSet.java +/* RowSet.java Copyright (C) 2002 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -7,7 +7,7 @@ GNU Classpath is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. - + GNU Classpath is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU @@ -56,7 +56,7 @@ import java.util.Map; /** * @since 1.4 */ -public interface RowSet extends ResultSet +public interface RowSet extends ResultSet { String getUrl() throws SQLException; diff --git a/libjava/classpath/javax/sql/RowSetEvent.java b/libjava/classpath/javax/sql/RowSetEvent.java index 26de4e97330..dd0a9bcc40c 100644 --- a/libjava/classpath/javax/sql/RowSetEvent.java +++ b/libjava/classpath/javax/sql/RowSetEvent.java @@ -1,4 +1,4 @@ -/* RowSetEvent.java +/* RowSetEvent.java Copyright (C) 2002 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -7,7 +7,7 @@ GNU Classpath is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. - + GNU Classpath is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU @@ -43,7 +43,7 @@ import java.util.EventObject; /** * @since 1.4 */ -public class RowSetEvent extends EventObject +public class RowSetEvent extends EventObject { public RowSetEvent(RowSet source) { diff --git a/libjava/classpath/javax/sql/RowSetInternal.java b/libjava/classpath/javax/sql/RowSetInternal.java index 1fdacb9e766..7b3252cff14 100644 --- a/libjava/classpath/javax/sql/RowSetInternal.java +++ b/libjava/classpath/javax/sql/RowSetInternal.java @@ -1,4 +1,4 @@ -/* RowSetInternal.java +/* RowSetInternal.java Copyright (C) 2002 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -7,7 +7,7 @@ GNU Classpath is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. - + GNU Classpath is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU @@ -45,7 +45,7 @@ import java.sql.SQLException; /** * @since 1.4 */ -public interface RowSetInternal +public interface RowSetInternal { /** * @since 1.4 diff --git a/libjava/classpath/javax/sql/RowSetListener.java b/libjava/classpath/javax/sql/RowSetListener.java index 86726747ffa..1a887c548d9 100644 --- a/libjava/classpath/javax/sql/RowSetListener.java +++ b/libjava/classpath/javax/sql/RowSetListener.java @@ -1,4 +1,4 @@ -/* RowSetListener.java +/* RowSetListener.java Copyright (C) 2002 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -7,7 +7,7 @@ GNU Classpath is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. - + GNU Classpath is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU @@ -43,7 +43,7 @@ import java.util.EventListener; /** * @since 1.4 */ -public interface RowSetListener extends EventListener +public interface RowSetListener extends EventListener { void rowSetChanged(RowSetEvent event); diff --git a/libjava/classpath/javax/sql/RowSetMetaData.java b/libjava/classpath/javax/sql/RowSetMetaData.java index 8279fee3950..72c58ac0ca5 100644 --- a/libjava/classpath/javax/sql/RowSetMetaData.java +++ b/libjava/classpath/javax/sql/RowSetMetaData.java @@ -1,4 +1,4 @@ -/* RowSetMetaData.java +/* RowSetMetaData.java Copyright (C) 2002 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -7,7 +7,7 @@ GNU Classpath is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. - + GNU Classpath is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU @@ -44,7 +44,7 @@ import java.sql.SQLException; /** * @since 1.4 */ -public interface RowSetMetaData extends ResultSetMetaData +public interface RowSetMetaData extends ResultSetMetaData { void setColumnCount(int columnCount) throws SQLException; diff --git a/libjava/classpath/javax/sql/RowSetReader.java b/libjava/classpath/javax/sql/RowSetReader.java index fb33315b457..a6541e0e398 100644 --- a/libjava/classpath/javax/sql/RowSetReader.java +++ b/libjava/classpath/javax/sql/RowSetReader.java @@ -1,4 +1,4 @@ -/* RowSetReader.java +/* RowSetReader.java Copyright (C) 2002 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -7,7 +7,7 @@ GNU Classpath is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. - + GNU Classpath is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU @@ -43,7 +43,7 @@ import java.sql.SQLException; /** * @since 1.4 */ -public interface RowSetReader +public interface RowSetReader { void readData(RowSetInternal caller) throws SQLException; } diff --git a/libjava/classpath/javax/sql/RowSetWriter.java b/libjava/classpath/javax/sql/RowSetWriter.java index 20c1034dd54..3d07541bcb9 100644 --- a/libjava/classpath/javax/sql/RowSetWriter.java +++ b/libjava/classpath/javax/sql/RowSetWriter.java @@ -1,4 +1,4 @@ -/* RowSetWriter.java +/* RowSetWriter.java Copyright (C) 2002 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -7,7 +7,7 @@ GNU Classpath is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. - + GNU Classpath is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU @@ -43,7 +43,7 @@ import java.sql.SQLException; /** * @since 1.4 */ -public interface RowSetWriter +public interface RowSetWriter { boolean writeData(RowSetInternal caller) throws SQLException; } diff --git a/libjava/classpath/javax/sql/XAConnection.java b/libjava/classpath/javax/sql/XAConnection.java index 2fadffcfece..4cb0b308669 100644 --- a/libjava/classpath/javax/sql/XAConnection.java +++ b/libjava/classpath/javax/sql/XAConnection.java @@ -7,7 +7,7 @@ GNU Classpath is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. - + GNU Classpath is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU @@ -45,7 +45,7 @@ import javax.transaction.xa.XAResource; /** * @since 1.4 */ -public interface XAConnection extends PooledConnection +public interface XAConnection extends PooledConnection { XAResource getXAResource() throws SQLException; } diff --git a/libjava/classpath/javax/sql/XADataSource.java b/libjava/classpath/javax/sql/XADataSource.java index 724e2f08a3e..0387140d9c0 100644 --- a/libjava/classpath/javax/sql/XADataSource.java +++ b/libjava/classpath/javax/sql/XADataSource.java @@ -1,4 +1,4 @@ -/* XADataSource.java +/* XADataSource.java Copyright (C) 2002 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -7,7 +7,7 @@ GNU Classpath is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. - + GNU Classpath is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU @@ -44,7 +44,7 @@ import java.sql.SQLException; /** * @since 1.4 */ -public interface XADataSource +public interface XADataSource { XAConnection getXAConnection() throws SQLException; |