mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
17 lines
454 B
Java
Generated
17 lines
454 B
Java
Generated
// Generated automatically from android.util.Pair for testing purposes
|
|
|
|
package android.util;
|
|
|
|
|
|
public class Pair<F, S>
|
|
{
|
|
protected Pair() {}
|
|
public Pair(F p0, S p1){}
|
|
public String toString(){ return null; }
|
|
public boolean equals(Object p0){ return false; }
|
|
public final F first = null;
|
|
public final S second = null;
|
|
public int hashCode(){ return 0; }
|
|
public static <A, B> Pair<A, B> create(A p0, B p1){ return null; }
|
|
}
|