1 2 17 18 19 package org.apache.poi.poifs.eventfilesystem; 20 21 import org.apache.poi.poifs.filesystem.DocumentInputStream; 22 import org.apache.poi.poifs.filesystem.POIFSDocumentPath; 23 24 30 31 public class POIFSReaderEvent 32 { 33 private DocumentInputStream stream; 34 private POIFSDocumentPath path; 35 private String documentName; 36 37 44 45 POIFSReaderEvent(final DocumentInputStream stream, 46 final POIFSDocumentPath path, final String documentName) 47 { 48 this.stream = stream; 49 this.path = path; 50 this.documentName = documentName; 51 } 52 53 56 57 public DocumentInputStream getStream() 58 { 59 return stream; 60 } 61 62 65 66 public POIFSDocumentPath getPath() 67 { 68 return path; 69 } 70 71 74 75 public String getName() 76 { 77 return documentName; 78 } 79 } 81 | Popular Tags |