Esempio n. 1
0
 public boolean add(K key)
 {
     if (contains(key))
     {
         return(false);
     }
     map.put(key, unused);
     return(true);
 }
Esempio n. 2
0
    public boolean add(Object key)
    {
        if (contains(key))
        {
            return(false);
        }

        map.put(key, UNUSED);
        return(true);
    }