diff options
author | aclement <aclement> | 2010-11-27 01:59:52 +0000 |
---|---|---|
committer | aclement <aclement> | 2010-11-27 01:59:52 +0000 |
commit | f55ef741d7246cfac8f5c02754c0e4c9698fd310 (patch) | |
tree | 52215ce28354d7c35a8b04c506cbaefd3bbe69c8 /loadtime | |
parent | 37c473f0ec3cd02daa75b572b60cd89fe10ddb62 (diff) | |
download | aspectj-f55ef741d7246cfac8f5c02754c0e4c9698fd310.tar.gz aspectj-f55ef741d7246cfac8f5c02754c0e4c9698fd310.zip |
extra impl
Diffstat (limited to 'loadtime')
-rw-r--r-- | loadtime/testsrc/testdata/MySqlStatement.java | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/loadtime/testsrc/testdata/MySqlStatement.java b/loadtime/testsrc/testdata/MySqlStatement.java index ea1143ab3..3f7048610 100644 --- a/loadtime/testsrc/testdata/MySqlStatement.java +++ b/loadtime/testsrc/testdata/MySqlStatement.java @@ -155,4 +155,29 @@ public abstract class MySqlStatement implements Statement { public void setQueryTimeout(int seconds) throws SQLException { } + public boolean isClosed() throws SQLException { + // TODO Auto-generated method stub + return false; + } + + public boolean isPoolable() throws SQLException { + // TODO Auto-generated method stub + return false; + } + + public void setPoolable(boolean poolable) throws SQLException { + // TODO Auto-generated method stub + + } + + public boolean isWrapperFor(Class<?> iface) throws SQLException { + // TODO Auto-generated method stub + return false; + } + + public <T> T unwrap(Class<T> iface) throws SQLException { + // TODO Auto-generated method stub + return null; + } + } |