/** * This interface ensures that Simple Browser's url text field can be changed. * * @author Brad Rippe (brippe@fullcoll.edu) * @version 1.0 */ public interface URLSetable { /** * Set the url text field * @param url - the new url to display */ public void setURLTextField(String url); }