More stubs

This commit is contained in:
Tony Torralba
2023-03-10 10:08:58 +01:00
committed by Stephan Brandauer
parent 8aa80882ea
commit 393a0759db
575 changed files with 15595 additions and 19 deletions

View File

@@ -0,0 +1,29 @@
// Generated automatically from org.postgresql.Driver for testing purposes
package org.postgresql;
import java.sql.Connection;
import java.sql.DriverPropertyInfo;
import java.sql.SQLFeatureNotSupportedException;
import java.util.Properties;
import java.util.logging.Logger;
import org.postgresql.util.SharedTimer;
public class Driver implements java.sql.Driver
{
public Connection connect(String p0, Properties p1){ return null; }
public Driver(){}
public DriverPropertyInfo[] getPropertyInfo(String p0, Properties p1){ return null; }
public Logger getParentLogger(){ return null; }
public boolean acceptsURL(String p0){ return false; }
public boolean jdbcCompliant(){ return false; }
public int getMajorVersion(){ return 0; }
public int getMinorVersion(){ return 0; }
public static Properties parseURL(String p0, Properties p1){ return null; }
public static SQLFeatureNotSupportedException notImplemented(Class<? extends Object> p0, String p1){ return null; }
public static SharedTimer getSharedTimer(){ return null; }
public static String getVersion(){ return null; }
public static boolean isRegistered(){ return false; }
public static void deregister(){}
public static void register(){}
}

View File

@@ -0,0 +1,13 @@
// Generated automatically from org.postgresql.util.SharedTimer for testing purposes
package org.postgresql.util;
import java.util.Timer;
public class SharedTimer
{
public SharedTimer(){}
public Timer getTimer(){ return null; }
public int getRefCount(){ return 0; }
public void releaseTimer(){}
}