1 /**
2 * Licensed under the Artistic License; you may not use this file
3 * except in compliance with the License.
4 * You may obtain a copy of the License at
5 *
6 * http://displaytag.sourceforge.net/license.html
7 *
8 * THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
9 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
10 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
11 */
12
13 package org.displaytag.decorator.hssf;
14
15 import org.apache.poi.hssf.usermodel.HSSFSheet;
16
17 /**
18 * An implementor of this interface decorates tables and columns appearing in an HSSF workbook.
19 *
20 * @author Jorge L. Barroso
21 * @version $Revision$ ($Author$)
22 */
23 public interface DecoratesHssf
24 {
25 /**
26 * Set the worksheet used to render a table model.
27 *
28 * @param sheet The worksheet used to render a table model.
29 */
30 void setSheet(HSSFSheet sheet);
31 }