blob: d7aa0a3bdd88d24ca54570b2200c16ce49b0421d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004-2008 Istvan Rath and Daniel Varro
* 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:
* Istvan Rath - initial API and implementation
*******************************************************************************/
package org.eclipse.viatra2.frameworkgui.content;
import java.util.Set;
public interface ITreeParent extends ITreeObject
{
public Set<ITreeObject> getChildren();
public boolean hasChildren();
}