01: /**
02: * This interface provides methods to work with a text.
03: * If you want to use FindReplaceDialog, you need to implement this interface.
04: * The functions do the same as in the JTextPane class.
05: * @author Dmytro Podalyuk
06: */package org.columba.core.util;
07:
08: public interface IEditableText extends IViewableText {
09: public void setText(String text);
10: }
|