mirror of
https://github.com/github/codeql.git
synced 2026-01-24 20:02:58 +01:00
Generate tests and stubs
This commit is contained in:
40
java/ql/test/stubs/android/android/util/ArrayMap.java
generated
Normal file
40
java/ql/test/stubs/android/android/util/ArrayMap.java
generated
Normal file
@@ -0,0 +1,40 @@
|
||||
// Generated automatically from android.util.ArrayMap for testing purposes
|
||||
|
||||
package android.util;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
|
||||
public class ArrayMap<K, V> implements Map<K, V>
|
||||
{
|
||||
public ArrayMap(){}
|
||||
public ArrayMap(ArrayMap<K, V> p0){}
|
||||
public ArrayMap(int p0){}
|
||||
public Collection<V> values(){ return null; }
|
||||
public K keyAt(int p0){ return null; }
|
||||
public Set<K> keySet(){ return null; }
|
||||
public Set<Map.Entry<K, V>> entrySet(){ return null; }
|
||||
public String toString(){ return null; }
|
||||
public V get(Object p0){ return null; }
|
||||
public V put(K p0, V p1){ return null; }
|
||||
public V remove(Object p0){ return null; }
|
||||
public V removeAt(int p0){ return null; }
|
||||
public V setValueAt(int p0, V p1){ return null; }
|
||||
public V valueAt(int p0){ return null; }
|
||||
public boolean containsAll(Collection<? extends Object> p0){ return false; }
|
||||
public boolean containsKey(Object p0){ return false; }
|
||||
public boolean containsValue(Object p0){ return false; }
|
||||
public boolean equals(Object p0){ return false; }
|
||||
public boolean isEmpty(){ return false; }
|
||||
public boolean removeAll(Collection<? extends Object> p0){ return false; }
|
||||
public boolean retainAll(Collection<? extends Object> p0){ return false; }
|
||||
public int hashCode(){ return 0; }
|
||||
public int indexOfKey(Object p0){ return 0; }
|
||||
public int indexOfValue(Object p0){ return 0; }
|
||||
public int size(){ return 0; }
|
||||
public void clear(){}
|
||||
public void ensureCapacity(int p0){}
|
||||
public void putAll(ArrayMap<? extends K, ? extends V> p0){}
|
||||
public void putAll(Map<? extends K, ? extends V> p0){}
|
||||
}
|
||||
Reference in New Issue
Block a user