From: aclement Date: Sat, 27 Nov 2010 01:59:52 +0000 (+0000) Subject: extra impl X-Git-Tag: V1_6_11M1~17 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=f55ef741d7246cfac8f5c02754c0e4c9698fd310;p=aspectj.git extra impl --- 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 unwrap(Class iface) throws SQLException { + // TODO Auto-generated method stub + return null; + } + }