|
Groovy 1.7.0 | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectgroovy.sql.GroovyResultSetProxy
class GroovyResultSetProxy extends Object
GroovyResultSetProxy is used to create a proxy for GroovyResultSet. Due to the version incompatibility between java 6 and older versions methods with additional logic were moved into an extension class. When getting properties or calling methods, the runtime will try to first execute these on the extension and then on the ResultSet itself. This way it is possible to replace and add methods. To overload methods from ResultSet all methods have to be implemented on the extension class.
Constructor Summary | |
GroovyResultSetProxy(ResultSet set)
Creates a new procy instance. |
|
GroovyResultSetProxy(GroovyResultSetExtension ext)
Creates a new proxy instance with a custom extension. |
Method Summary | |
---|---|
GroovyResultSet
|
getImpl()
Gets a proxy instance that can be used as GroovyResultSet. |
Object
|
invoke(Object proxy, Method method, Object[] args)
Invokes a method for the GroovyResultSet. |
Methods inherited from class Object | |
---|---|
wait, wait, wait, hashCode, getClass, equals, toString, notify, notifyAll |
Constructor Detail |
---|
public GroovyResultSetProxy(ResultSet set)
public GroovyResultSetProxy(GroovyResultSetExtension ext)
Method Detail |
---|
public GroovyResultSet getImpl()
public Object invoke(Object proxy, Method method, Object[] args)
Copyright © 2003-2009 The Codehaus. All rights reserved.