Changeset 1391 for branches/GNU/src/gcc/libjava/java/sql/Ref.java
- Timestamp:
- Apr 27, 2004, 8:39:34 PM (22 years ago)
- Location:
- branches/GNU/src/gcc
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
libjava/java/sql/Ref.java (modified) (1 diff, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/gcc
- Property svn:ignore
-
old new 26 26 configure.vr 27 27 configure.vrs 28 28 29 Makefile 29 dir.info30 30 lost+found 31 31 update.out
-
- Property svn:ignore
-
branches/GNU/src/gcc/libjava/java/sql/Ref.java
-
Property cvs2svn:cvs-rev
changed from
1.1to1.1.1.2
r1390 r1391 36 36 exception statement from your version. */ 37 37 38 39 38 package java.sql; 40 39 41 /** 42 * This interface provides a mechanism for obtaining information about 43 * a SQL structured type 44 * 45 * @author Aaron M. Renn ([email protected]) 46 */ 47 public interface Ref 48 { 40 import java.util.Map; 49 41 50 42 /** 51 * This method returns the fully qualified name of the SQL structured 52 * type of the referenced item. 53 * 54 * @return The fully qualified name of the SQL structured type. 55 * 56 * @exception SQLException If an error occurs. 57 */ 58 public abstract String 59 getBaseTypeName() throws SQLException; 43 * This interface provides a mechanism for obtaining information about 44 * a SQL structured type 45 * 46 * @author Aaron M. Renn ([email protected]) 47 * @since 1.2 48 */ 49 public interface Ref 50 { 51 /** 52 * This method returns the fully qualified name of the SQL structured 53 * type of the referenced item. 54 * 55 * @return The fully qualified name of the SQL structured type. 56 * @exception SQLException If an error occurs. 57 * @since 1.2 58 */ 59 public String getBaseTypeName() throws SQLException; 60 60 61 } // interface Ref 61 /** 62 * @since 1.4 63 */ 64 public Object getObject(Map map) throws SQLException; 62 65 66 67 68 69 70 71 72 73 74 75 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.
