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 abstract class TableBlock extends Block {
12: public abstract RowBlock addRow();
13: }
|