You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BaseClass.java 908B

12345678910111213141516171819
  1. package foo;
  2. import java.io.PrintWriter;
  3. import java.sql.Connection;
  4. import java.sql.SQLException;
  5. import java.sql.SQLFeatureNotSupportedException;
  6. import java.util.logging.Logger;
  7. public class BaseClass {
  8. public PrintWriter getLogWriter() throws SQLException { return null; }
  9. public void setLogWriter(PrintWriter out) throws SQLException {}
  10. public void setLoginTimeout(int seconds) throws SQLException {}
  11. public int getLoginTimeout() throws SQLException { return 0; }
  12. public Logger getParentLogger() throws SQLFeatureNotSupportedException { return null; }
  13. public <T> T unwrap(Class<T> iface) throws SQLException { return null; }
  14. public boolean isWrapperFor(Class<?> iface) throws SQLException { return false; }
  15. public Connection getConnection() throws SQLException { return null; }
  16. public Connection getConnection(String username, String password) throws SQLException { return null; }
  17. }