oq.java 806 Bytes
import com.google.common.annotations.GwtCompatible;
import java.io.Serializable;
import javax.annotation.Nullable;

@GwtCompatible(serializable=true)
public class oq<K, V>
  extends mw<K, V>
  implements Serializable
{
  private static final long serialVersionUID = 0L;
  public final K e;
  public final V f;
  
  public oq(@Nullable K paramK, @Nullable V paramV)
  {
    this.e = paramK;
    this.f = paramV;
  }
  
  @Nullable
  public final K getKey()
  {
    return (K)this.e;
  }
  
  @Nullable
  public final V getValue()
  {
    return (V)this.f;
  }
  
  public final V setValue(V paramV)
  {
    throw new UnsupportedOperationException();
  }
}


/* Location:              /home/merong/decompile/hackery-dex2jar.jar!/oq.class
 * Java compiler version: 6 (50.0)
 * JD-Core Version:       0.7.1
 */