📄 structproxy.java
字号:
/*
* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -