mirror of
https://github.com/github/codeql.git
synced 2026-05-02 12:15:17 +02:00
Manually update automatically generated stubs
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
package org.apache.commons.collections4;
|
||||
|
||||
import java.io.PrintStream;
|
||||
import java.util.Collection;
|
||||
import java.util.Map;
|
||||
import java.util.Properties;
|
||||
import java.util.ResourceBundle;
|
||||
|
||||
@@ -5,7 +5,7 @@ package org.apache.commons.collections4.keyvalue;
|
||||
import java.util.Map;
|
||||
import org.apache.commons.collections4.keyvalue.AbstractKeyValue;
|
||||
|
||||
abstract public class AbstractMapEntry<K, V> extends Map.Entry<K, V> implements Map.Entry<K, V>
|
||||
abstract public class AbstractMapEntry<K, V> extends AbstractKeyValue<K, V> implements Map.Entry<K, V>
|
||||
{
|
||||
protected AbstractMapEntry() {}
|
||||
protected AbstractMapEntry(K p0, V p1){}
|
||||
|
||||
@@ -12,4 +12,6 @@ public class DefaultMapEntry<K, V> extends AbstractMapEntry<K, V>
|
||||
public DefaultMapEntry(K p0, V p1){}
|
||||
public DefaultMapEntry(KeyValue<? extends K, ? extends V> p0){}
|
||||
public DefaultMapEntry(Map.Entry<? extends K, ? extends V> p0){}
|
||||
public V getValue(){ return null; }
|
||||
public K getKey(){ return null; }
|
||||
}
|
||||
|
||||
@@ -14,4 +14,6 @@ public class UnmodifiableMapEntry<K, V> extends AbstractMapEntry<K, V> implement
|
||||
public UnmodifiableMapEntry(KeyValue<? extends K, ? extends V> p0){}
|
||||
public UnmodifiableMapEntry(Map.Entry<? extends K, ? extends V> p0){}
|
||||
public V setValue(V p0){ return null; }
|
||||
public V getValue(){ return null; }
|
||||
public K getKey(){ return null; }
|
||||
}
|
||||
|
||||
@@ -11,10 +11,10 @@ import org.apache.commons.collections4.Factory;
|
||||
import org.apache.commons.collections4.MultiMap;
|
||||
import org.apache.commons.collections4.map.AbstractMapDecorator;
|
||||
|
||||
public class MultiValueMap<K, V> extends MultiMap<K, V> implements MultiMap<K, V>, Serializable
|
||||
public class MultiValueMap<K, V> extends AbstractMapDecorator<K, Object> implements MultiMap<K, V>, Serializable
|
||||
{
|
||||
protected Collection<V> createCollection(int p0){ return null; }
|
||||
protected MultiValueMap(Map<K, ? super C> p0, Factory<C> p1){}
|
||||
protected <C> MultiValueMap(Map<K, ? super C> p0, Factory<C> p1){}
|
||||
public Collection<Object> values(){ return null; }
|
||||
public Collection<V> getCollection(Object p0){ return null; }
|
||||
public Iterator<Map.Entry<K, V>> iterator(){ return null; }
|
||||
@@ -33,4 +33,8 @@ public class MultiValueMap<K, V> extends MultiMap<K, V> implements MultiMap<K, V
|
||||
public static <K, V> MultiValueMap<K, V> multiValueMap(Map<K, ? super Collection<V>> p0){ return null; }
|
||||
public void clear(){}
|
||||
public void putAll(Map<? extends K, ?> p0){}
|
||||
public int size(){ return 0; }
|
||||
public Object remove(Object key){ return null; }
|
||||
public Object get(Object key){ return null; }
|
||||
public boolean isEmpty(){ return false; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user