01: package com.xoetrope.export.xl;
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.6 $</p>
12: */
13: public class XLBlockItem extends Block {
14: XLExporter xlExporter;
15:
16: public XLBlockItem(XLExporter exporter) {
17: xlExporter = exporter;
18: }
19:
20: public Block append() {
21: XLBlockItem blockItem = new XLCellBlockItem(xlExporter);
22: blocks.add(blockItem);
23: return blockItem;
24: }
25:
26: }
|