/** * A simple list of strings. */ public interface ListOfStrings { // +----------+---------------------------------------------------------- // | Mutators | // +----------+ /** * Remove an element from the list. */ // +-----------+--------------------------------------------------------- // | Observers | // +-----------+ /** * Get an element from the list. */ } // class ListOfStrings