]> source.dussan.org Git - aspectj.git/commitdiff
extra impl
authoraclement <aclement>
Sat, 27 Nov 2010 01:59:52 +0000 (01:59 +0000)
committeraclement <aclement>
Sat, 27 Nov 2010 01:59:52 +0000 (01:59 +0000)
loadtime/testsrc/testdata/MySqlStatement.java

index ea1143ab3f7280bbd8ddc71f4bafb2b703439344..3f704861080731bf3e4fa3b4188bff5e1b86e79f 100644 (file)
@@ -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;
+       }
+
 }