01: // Copyright (C) 2003,2004,2005 by Object Mentor, Inc. All rights reserved.
02: // Released under the terms of the GNU General Public License version 2 or later.
03: package fitnesse.html;
04:
05: public class RawHtml extends HtmlElement {
06: private String html;
07:
08: public RawHtml(String html) {
09: this .html = html;
10: }
11:
12: public String html() {
13: return this .html;
14: }
15:
16: public String toString() {
17: return this.html;
18: }
19: }
|