relax requirements for POIUtils arguments (replace classes with interfaces)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1160150 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
6afe2d988c
commit
c3235cc745
@ -21,7 +21,6 @@ import java.util.Iterator;
|
|||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import org.apache.poi.poifs.filesystem.DirectoryEntry;
|
import org.apache.poi.poifs.filesystem.DirectoryEntry;
|
||||||
import org.apache.poi.poifs.filesystem.DirectoryNode;
|
|
||||||
import org.apache.poi.poifs.filesystem.DocumentEntry;
|
import org.apache.poi.poifs.filesystem.DocumentEntry;
|
||||||
import org.apache.poi.poifs.filesystem.DocumentInputStream;
|
import org.apache.poi.poifs.filesystem.DocumentInputStream;
|
||||||
import org.apache.poi.poifs.filesystem.Entry;
|
import org.apache.poi.poifs.filesystem.Entry;
|
||||||
@ -70,8 +69,9 @@ public class POIUtils
|
|||||||
* @param excepts
|
* @param excepts
|
||||||
* is a list of Strings specifying what nodes NOT to copy
|
* is a list of Strings specifying what nodes NOT to copy
|
||||||
*/
|
*/
|
||||||
public static void copyNodes( DirectoryNode sourceRoot,
|
public static void copyNodes( DirectoryEntry sourceRoot,
|
||||||
DirectoryNode targetRoot, List<String> excepts ) throws IOException
|
DirectoryEntry targetRoot, List<String> excepts )
|
||||||
|
throws IOException
|
||||||
{
|
{
|
||||||
Iterator<Entry> entries = sourceRoot.getEntries();
|
Iterator<Entry> entries = sourceRoot.getEntries();
|
||||||
while ( entries.hasNext() )
|
while ( entries.hasNext() )
|
||||||
|
Loading…
Reference in New Issue
Block a user