01: package fr.aliacom.common.ui;
02:
03: /**
04: * @author tom
05: *
06: * (C) 2001, 2002 Thomas Cataldo
07: */
08: public interface ITextArea extends IText {
09:
10: void addStyle(String styleName, IColor styleColor);
11:
12: void appendText(String text, String styleName);
13:
14: void appendText(String text);
15:
16: }
|