structproxy.java

来自「JdbcProxy 可以理解为 JDBC 代理」· Java 代码 · 共 46 行

JAVA
46
字号
/*
 * This file is generated by nl.griffelservices.proxy.Generator.
 * Please do not modify this file manually.
 * All your changes will be deleted when this file is regenerated.
 */
package nl.griffelservices.proxy.jdbc;

import java.lang.reflect.Method;
import nl.griffelservices.proxy.Handler;

/** This class is a proxy implementation of java.sql.Struct */
public class StructProxy extends JdbcProxy implements java.sql.Struct
{
  /**
   * Constructs a new StructProxy object.
   * 
   * @param handler the proxy handler
   * @param proxyObject the proxy data
   */
  public StructProxy(Handler handler, Object proxyObject)
  {
    super(handler, java.sql.Struct.class, proxyObject);
  }

  /** public abstract java.lang.Object[] java.sql.Struct.getAttributes(java.util.Map) throws java.sql.SQLException */
  private static final Method m0 = getMethod(java.sql.Struct.class, "getAttributes", new Class[] {java.util.Map.class});
  public java.lang.Object[] getAttributes(java.util.Map p0) throws java.sql.SQLException
  {
    return (java.lang.Object[])invoke(m0, new Object[] {p0});
  }

  /** public abstract java.lang.Object[] java.sql.Struct.getAttributes() throws java.sql.SQLException */
  private static final Method m1 = getMethod(java.sql.Struct.class, "getAttributes", new Class[] {});
  public java.lang.Object[] getAttributes() throws java.sql.SQLException
  {
    return (java.lang.Object[])invoke(m1, new Object[] {});
  }

  /** public abstract java.lang.String java.sql.Struct.getSQLTypeName() throws java.sql.SQLException */
  private static final Method m2 = getMethod(java.sql.Struct.class, "getSQLTypeName", new Class[] {});
  public java.lang.String getSQLTypeName() throws java.sql.SQLException
  {
    return (java.lang.String)invoke(m2, new Object[] {});
  }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?