mirror of
https://github.com/github/codeql.git
synced 2026-05-05 13:45:19 +02:00
More stubs
This commit is contained in:
committed by
Stephan Brandauer
parent
8aa80882ea
commit
393a0759db
29
java/ql/test/stubs/javafx-web/org/postgresql/Driver.java
generated
Normal file
29
java/ql/test/stubs/javafx-web/org/postgresql/Driver.java
generated
Normal 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(){}
|
||||
}
|
||||
13
java/ql/test/stubs/javafx-web/org/postgresql/util/SharedTimer.java
generated
Normal file
13
java/ql/test/stubs/javafx-web/org/postgresql/util/SharedTimer.java
generated
Normal 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(){}
|
||||
}
|
||||
Reference in New Issue
Block a user