This will eventually be the root of the object/event model
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352746 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3557f545c0
commit
03fc17cc76
25
src/scratchpad/src/org/apache/poi/hdf/model/HDFDocument.java
Normal file
25
src/scratchpad/src/org/apache/poi/hdf/model/HDFDocument.java
Normal file
@ -0,0 +1,25 @@
|
||||
package org.apache.poi.hdf.model;
|
||||
|
||||
import java.io.InputStream;
|
||||
import java.io.IOException;
|
||||
|
||||
import org.apache.poi.hdf.event.HDFParsingListener;
|
||||
import org.apache.poi.hdf.event.EventBridge;
|
||||
|
||||
public class HDFDocument
|
||||
{
|
||||
|
||||
HDFObjectModel _model;
|
||||
|
||||
|
||||
public HDFDocument(InputStream in, HDFParsingListener listener) throws IOException
|
||||
{
|
||||
EventBridge eb = new EventBridge(listener);
|
||||
HDFObjectFactory factory = new HDFObjectFactory(in, eb);
|
||||
}
|
||||
public HDFDocument(InputStream in) throws IOException
|
||||
{
|
||||
_model = new HDFObjectModel();
|
||||
HDFObjectFactory factory = new HDFObjectFactory(in, _model);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user