X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/IParent.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/IParent.java index 2a31793..f1571c5 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/IParent.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/IParent.java @@ -26,7 +26,7 @@ public interface IParent { * exception occurs while accessing its corresponding resource * @return the immediate children of this element */ -//IJavaElement[] getChildren() throws JavaModelException; +IJavaElement[] getChildren() throws JavaModelException; /** * Returns whether this element has one or more immediate children. * This is a convenience method, and may be more efficient than @@ -36,5 +36,5 @@ public interface IParent { * exception occurs while accessing its corresponding resource * @return true if the immediate children of this element, false otherwise */ -//boolean hasChildren() throws JavaModelException; +boolean hasChildren() throws JavaModelException; }