home *** CD-ROM | disk | FTP | other *** search
- package allaire.util.template;
-
- class TextElement extends TemplateElement {
- private String m_strText;
-
- public void process(TemplateOutput var1) throws TemplateException {
- var1.write(((TemplateElement)this).resolveExpressionsInText(this.m_strText));
- }
-
- public void setText(String var1) {
- this.m_strText = var1;
- }
-
- public String getText() {
- return this.m_strText;
- }
- }
-