import java.util.Set; public interface GettableSet extends Set { /** Gets the object from the set which is equal to some specified object. @param an object @return the object in the set which is equal to the object passed in, or null if there is no such object */ public E get(E obj); }