// TextGetter.java // Required interface for CS 10 assignment 5, part 1, Fall 2008 // cmc, updated 11/18/08 // DO NOT CHANGE THIS FILE - you will not turn it in /** An interface for classes that get text (e.g., from a file). */ public interface TextGetter { /** Gets the text. @return the content as a String. @throws IOException if text is not accessible. */ String getText() throws java.io.IOException; }