eclipse warnings - raw list access
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1773909 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
cbbf3f44db
commit
4aaef1761d
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user