// CSE 143, Summer 2012 // The Set interface represents the methods of the Set abstract data type (ADT). // These are the methods that any set implementation must have. public interface Set { public boolean contains (int value); public void add (int value); public void remove (int value); }