01 /*
02 *
03 * All content copyright Terracotta, Inc., unless otherwise indicated. All rights reserved.
04 *
05 */
06 package demo.sharededitor.ui;
07
08 public interface Fontable {
09 void setFontInfo(String name, int size, String text);
10
11 void setFontName(String name);
12
13 void setFontSize(int size);
14
15 void setText(String text);
16
17 String getText();
18
19 void appendToText(char c);
20 }
|