01 /**
02 *
03 * All content copyright (c) 2003-2008 Terracotta, Inc.,
04 * except as may otherwise be noted in a separate copyright notice.
05 * All rights reserved.
06 *
07 */
08 package demo.sharededitor.ui;
09
10 /**
11 * Description of the Interface
12 *
13 *@author Terracotta, Inc.
14 */
15 public interface Fontable {
16 void setFontInfo(String name, int size, String text);
17
18 void setFontName(String name);
19
20 void setFontSize(int size);
21
22 void setText(String text);
23
24 String getText();
25
26 void appendToText(char c);
27 }
|