Exemplo n.º 1
0
            public override bool Equals(object other)
            {
                if (!(other is java.util.MapClass.Entry <K, V>))
                {
                    return(false);
                }
                java.util.MapClass.Entry <object, object> entry = (java.util.MapClass.Entry <object
                                                                                             , object>)other;
                object key = base.get();

                return((key == null ? key == entry.getKey() : key.Equals(entry.getKey())) && ((object)value == null ? (object)entry.getValue() == null : value.Equals(entry.getValue())));
            }
Exemplo n.º 2
0
 public K get(java.util.MapClass.Entry <K, V> entry)
 {
     return(entry.getKey());
 }
Exemplo n.º 3
0
 public V get(java.util.MapClass.Entry <K, V> entry)
 {
     return(entry.getValue());
 }
Exemplo n.º 4
0
 public java.util.MapClass.Entry <K, V> get(java.util.MapClass.Entry <K, V> entry)
 {
     return(entry);
 }