FileDocCategorySizeDatePackage
POIFSReaderEvent.javaAPI DocApache Poi 3.0.12293Mon Jan 01 12:39:36 GMT 2007org.apache.poi.poifs.eventfilesystem

POIFSReaderEvent

public class POIFSReaderEvent extends Object
Class POIFSReaderEvent
author
Marc Johnson (mjohnson at apache dot org)
version
%I%, %G%

Fields Summary
private DocumentInputStream
stream
private POIFSDocumentPath
path
private String
documentName
Constructors Summary
POIFSReaderEvent(DocumentInputStream stream, POIFSDocumentPath path, String documentName)
package scoped constructor

param
stream the DocumentInputStream, freshly opened
param
path the path of the document
param
documentName the name of the document

        this.stream       = stream;
        this.path         = path;
        this.documentName = documentName;
    
Methods Summary
public java.lang.StringgetName()

return
the document's name

        return documentName;
    
public org.apache.poi.poifs.filesystem.POIFSDocumentPathgetPath()

return
the document's path

        return path;
    
public org.apache.poi.poifs.filesystem.DocumentInputStreamgetStream()

return
the DocumentInputStream, freshly opened

        return stream;