Ignore:
Timestamp:
Apr 27, 2004, 8:39:34 PM (22 years ago)
Author:
bird
Message:

GCC v3.3.3 sources.

Location:
branches/GNU/src/gcc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/gcc

    • Property svn:ignore
      •  

        old new  
        2626configure.vr
        2727configure.vrs
         28
        2829Makefile
        29 dir.info
        3030lost+found
        3131update.out
  • branches/GNU/src/gcc/libjava/java/sql/Ref.java

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r1390 r1391  
    3636exception statement from your version. */
    3737
    38 
    3938package java.sql;
    4039
    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 {
     40import java.util.Map;
    4941
    5042/**
    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 */
     49public 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;
    6060
    61 } // interface Ref
     61  /**
     62   * @since 1.4
     63   */
     64  public Object getObject(Map map) throws SQLException;
    6265
     66
     67
     68
     69
     70
     71
     72
     73
     74
     75
Note: See TracChangeset for help on using the changeset viewer.