1 /** 2 * This interface provides methods to work with a text. 3 * If you want to use FindReplaceDialog, you need to implement this interface. 4 * The functions do the same as in the JTextPane class. 5 * @author Dmytro Podalyuk 6 */ 7 package org.columba.core.util; 8 9 public interface IEditableText extends IViewableText { 10 public void setText(String text); 11 } 12