01: package com.xoetrope.export.html;
02:
03: import com.xoetrope.export.Block;
04:
05: /**
06: *
07: * <p> Copyright (c) Xoetrope Ltd., 2001-2006, This software is licensed under
08: * the GNU Public License (GPL), please see license.txt for more details. If
09: * you make commercial use of this software you must purchase a commercial
10: * license from Xoetrope.</p>
11: * <p> $Revision: 1.5 $</p>
12: */
13: public class HTMLFragmentItem extends HTMLBlockItem {
14:
15: public HTMLFragmentItem() {
16: }
17:
18: public String getStartText() {
19: return value;
20: }
21:
22: }
|