KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > columba > core > util > IEditableText


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 JavaDoc text);
11 }
12
Popular Tags