blob: 34a9eab91e273ec3f3aebccae7ee23649f119cf3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2010 Mia-Software.
* 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:
* Nicolas Bros (Mia-Software) - initial API and implementation
*
*******************************************************************************/
package org.eclipse.gmt.modisco.infra.browser.uicore.internal.model;
import java.util.List;
import org.eclipse.swt.graphics.Color;
import org.eclipse.swt.graphics.Font;
import org.eclipse.swt.graphics.Image;
/** The base interface implemented by all elements that appear in the browser */
public interface ITreeElement {
String getText();
Image getImage();
ITreeElement getTreeParent();
boolean hasChildren();
List<?> getChildren();
Color getForeground();
Color getBackground();
Font getFont();
}