KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > demo > sharededitor > ui > IFontable


1 /*
2 @COPYRIGHT@
3 */

4 package demo.sharededitor.ui;
5
6 public interface IFontable
7 {
8     void setFontInfo(String JavaDoc name, int size, String JavaDoc text);
9     void setFontName(String JavaDoc name);
10     void setFontSize(int size);
11     void setText(String JavaDoc text);
12     String JavaDoc getText();
13     void appendToText(char c);
14 }
15
Popular Tags