![JAR search and dependency download from the Maven repository](/logo.png)
org.eclipse.jdt.core.IParent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vaadin-client-compiler-deps Show documentation
Show all versions of vaadin-client-compiler-deps Show documentation
Vaadin is a web application framework for Rich Internet Applications (RIA).
Vaadin enables easy development and maintenance of fast and
secure rich web
applications with a stunning look and feel and a wide browser support.
It features a server-side architecture with the majority of the logic
running
on the server. Ajax technology is used at the browser-side to ensure a
rich
and interactive user experience.
/*******************************************************************************
* Copyright (c) 2000, 2008 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.core;
/**
* Common protocol for Java elements that contain other Java elements.
*
* @noimplement This interface is not intended to be implemented by clients.
*/
public interface IParent {
/**
* Returns the immediate children of this element.
* Unless otherwise specified by the implementing element,
* the children are in no particular order.
*
* @exception JavaModelException if this element does not exist or if an
* exception occurs while accessing its corresponding resource
* @return the immediate children of this element
*/
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
* testing whether getChildren
is an empty array.
*
* @exception JavaModelException if this element does not exist or if an
* exception occurs while accessing its corresponding resource
* @return true if the immediate children of this element, false otherwise
*/
boolean hasChildren() throws JavaModelException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy