mirror of
https://github.com/github/codeql.git
synced 2026-04-27 09:45:15 +02:00
Add stubs
This commit is contained in:
17
java/ql/test/stubs/apache-hive/javax/net/SocketFactory.java
generated
Normal file
17
java/ql/test/stubs/apache-hive/javax/net/SocketFactory.java
generated
Normal file
@@ -0,0 +1,17 @@
|
||||
// Generated automatically from javax.net.SocketFactory for testing purposes
|
||||
|
||||
package javax.net;
|
||||
|
||||
import java.net.InetAddress;
|
||||
import java.net.Socket;
|
||||
|
||||
abstract public class SocketFactory
|
||||
{
|
||||
protected SocketFactory(){}
|
||||
public Socket createSocket(){ return null; }
|
||||
public abstract Socket createSocket(InetAddress p0, int p1);
|
||||
public abstract Socket createSocket(InetAddress p0, int p1, InetAddress p2, int p3);
|
||||
public abstract Socket createSocket(String p0, int p1);
|
||||
public abstract Socket createSocket(String p0, int p1, InetAddress p2, int p3);
|
||||
public static SocketFactory getDefault(){ return null; }
|
||||
}
|
||||
Reference in New Issue
Block a user