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 HTMLCellBlockItem extends HTMLBlockItem {
14: public HTMLCellBlockItem() {
15: super .setTag("TD");
16: }
17: }
|