mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
17 lines
445 B
Java
Generated
17 lines
445 B
Java
Generated
// Generated automatically from javafx.util.Pair for testing purposes
|
|
|
|
package javafx.util;
|
|
|
|
import java.io.Serializable;
|
|
|
|
public class Pair<K, V> implements Serializable
|
|
{
|
|
protected Pair() {}
|
|
public K getKey(){ return null; }
|
|
public Pair(K p0, V p1){}
|
|
public String toString(){ return null; }
|
|
public V getValue(){ return null; }
|
|
public boolean equals(Object p0){ return false; }
|
|
public int hashCode(){ return 0; }
|
|
}
|