Changes for model factory/event factory (added model marker interface)
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352921 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e0a3d2ae56
commit
e22743ac81
11
src/java/org/apache/poi/hssf/model/Model.java
Normal file
11
src/java/org/apache/poi/hssf/model/Model.java
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
package org.apache.poi.hssf.model;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* enclosing_type describe the purpose here
|
||||||
|
*
|
||||||
|
* @author Andrew C. Oliver androliv@cisco.com
|
||||||
|
*/
|
||||||
|
public interface Model
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
@ -87,8 +87,7 @@ import org.apache.poi.hssf.record
|
|||||||
* @version 1.0-pre
|
* @version 1.0-pre
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public class Sheet
|
public class Sheet implements Model
|
||||||
extends java.lang.Object
|
|
||||||
{
|
{
|
||||||
public static final short LeftMargin = 0;
|
public static final short LeftMargin = 0;
|
||||||
public static final short RightMargin = 1;
|
public static final short RightMargin = 1;
|
||||||
|
@ -92,7 +92,7 @@ import org.apache.poi.hssf.util.HSSFColor;
|
|||||||
* @version 1.0-pre
|
* @version 1.0-pre
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public class Workbook {
|
public class Workbook implements Model {
|
||||||
private static final int DEBUG = POILogger.DEBUG;
|
private static final int DEBUG = POILogger.DEBUG;
|
||||||
|
|
||||||
// public static Workbook currentBook = null;
|
// public static Workbook currentBook = null;
|
||||||
|
Loading…
Reference in New Issue
Block a user