01: package com.xoetrope.export;
02:
03: /**
04: *
05: * <p> Copyright (c) Xoetrope Ltd., 2001-2006, This software is licensed under
06: * the GNU Public License (GPL), please see license.txt for more details. If
07: * you make commercial use of this software you must purchase a commercial
08: * license from Xoetrope.</p>
09: * <p> $Revision: 1.2 $</p>
10: */
11: public interface RowBlock {
12: public Block addCell(String contents, String style);
13:
14: public Block addCell(String cellContents, String style,
15: int colSpan, int rowSpan);
16: }
|