diff options
author | Nick Burch <nick@apache.org> | 2008-04-10 14:26:36 +0000 |
---|---|---|
committer | Nick Burch <nick@apache.org> | 2008-04-10 14:26:36 +0000 |
commit | d8a63301aa16edf6e7866b81f6ed71163ae2f661 (patch) | |
tree | 2417309822d84a58b0e193738668a460dd21c428 /src/ooxml/java/org/apache/poi | |
parent | 8f63a462557601824d30cd3f0326715671dcb84b (diff) | |
download | poi-d8a63301aa16edf6e7866b81f6ed71163ae2f661.tar.gz poi-d8a63301aa16edf6e7866b81f6ed71163ae2f661.zip |
Merged revisions 638786-638802,638805-638811,638813-638814,638816-639230,639233-639241,639243-639253,639255-639486,639488-639601,639603-639835,639837-639917,639919-640056,640058-640710,640712-641156,641158-641184,641186-641795,641797-641798,641800-641933,641935-641963,641965-641966,641968-641995,641997-642230,642232-642562,642564-642565,642568-642570,642572-642573,642576-642736,642739-642877,642879,642881-642890,642892-642903,642905-642945,642947-643624,643626-643653,643655-643669,643671,643673-643830,643832-643833,643835-644342,644344-644472,644474-644508,644510-645347,645349-645351,645353-645559,645561-645565,645568-645951,645953-646193,646195-646313 via svnmerge from
https://svn.apache.org:443/repos/asf/poi/trunk
........
r646312 | nick | 2008-04-09 13:46:42 +0100 (Wed, 09 Apr 2008) | 1 line
Provide a common ole2 implementation of POITextExtractor, which gives access to the document metadata
........
git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@646818 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/ooxml/java/org/apache/poi')
-rw-r--r-- | src/ooxml/java/org/apache/poi/extractor/ExtractorFactory.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ooxml/java/org/apache/poi/extractor/ExtractorFactory.java b/src/ooxml/java/org/apache/poi/extractor/ExtractorFactory.java index 318b68d8f0..12321bfac2 100644 --- a/src/ooxml/java/org/apache/poi/extractor/ExtractorFactory.java +++ b/src/ooxml/java/org/apache/poi/extractor/ExtractorFactory.java @@ -29,6 +29,7 @@ import org.openxml4j.opc.Package; import org.openxml4j.opc.PackagePart; import org.openxml4j.opc.PackageRelationshipCollection; +import org.apache.poi.POIOLE2TextExtractor; import org.apache.poi.POITextExtractor; import org.apache.poi.POIXMLDocument; import org.apache.poi.POIXMLTextExtractor; @@ -104,7 +105,7 @@ public class ExtractorFactory { throw new IllegalArgumentException("No supported documents found in the OOXML package"); } - public static POITextExtractor createExtractor(POIFSFileSystem fs) throws IOException { + public static POIOLE2TextExtractor createExtractor(POIFSFileSystem fs) throws IOException { // Look for certain entries in the stream, to figure it // out from for(Iterator entries = fs.getRoot().getEntries(); entries.hasNext(); ) { |