diff options
author | Andreas Beeker <kiwiwings@apache.org> | 2016-12-13 00:34:30 +0000 |
---|---|---|
committer | Andreas Beeker <kiwiwings@apache.org> | 2016-12-13 00:34:30 +0000 |
commit | a79a7711b5e1328b302392a046b4fb35d3e094c8 (patch) | |
tree | bb972fe8bfffe2a9759f49e059582388574fe01e /src/java/org/apache/poi/poifs | |
parent | 41d858572335f55446d10b1cd2b83adbe538f45b (diff) | |
download | poi-a79a7711b5e1328b302392a046b4fb35d3e094c8.tar.gz poi-a79a7711b5e1328b302392a046b4fb35d3e094c8.zip |
eclipse warnings - raw list access
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1773909 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/poi/poifs')
-rw-r--r-- | src/java/org/apache/poi/poifs/property/Parent.java | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/java/org/apache/poi/poifs/property/Parent.java b/src/java/org/apache/poi/poifs/property/Parent.java index 79c286c44e..24e2bb266d 100644 --- a/src/java/org/apache/poi/poifs/property/Parent.java +++ b/src/java/org/apache/poi/poifs/property/Parent.java @@ -23,12 +23,8 @@ import java.io.IOException; /** * Behavior for parent (directory) properties - * - * @author Marc Johnson27591@hotmail.com */ -public interface Parent - extends Child -{ +public interface Parent extends Child, Iterable<Property> { /** * Get an iterator over the children of this Parent; all elements @@ -37,7 +33,7 @@ public interface Parent * @return Iterator of children; may refer to an empty collection */ - public Iterator getChildren(); + public Iterator<Property> getChildren(); /** * Add a new child to the collection of children |