Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IParent.java')
-rw-r--r--core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IParent.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IParent.java b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IParent.java
index 5b9b708db5c..a7492ecd1d0 100644
--- a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IParent.java
+++ b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IParent.java
@@ -27,11 +27,12 @@ public interface IParent {
* exception occurs while accessing its corresponding resource
*/
ICElement[] getChildren() throws CModelException;
-
+
/**
* returns the children of a certain type
*/
public List<ICElement> getChildrenOfType(int type) throws CModelException;
+
/**
* Returns whether this element has one or more immediate children.
* This is a convenience method, and may be more efficient than

Back to the top