mirror of
https://github.com/github/codeql.git
synced 2025-12-21 03:06:31 +01:00
18 lines
509 B
Java
Generated
18 lines
509 B
Java
Generated
// Generated automatically from javax.naming.RefAddr for testing purposes
|
|
|
|
package javax.naming;
|
|
|
|
import java.io.Serializable;
|
|
|
|
abstract public class RefAddr implements Serializable
|
|
{
|
|
protected RefAddr() {}
|
|
protected RefAddr(String p0){}
|
|
protected String addrType = null;
|
|
public String getType(){ return null; }
|
|
public String toString(){ return null; }
|
|
public abstract Object getContent();
|
|
public boolean equals(Object p0){ return false; }
|
|
public int hashCode(){ return 0; }
|
|
}
|