blob: a4041be8966a52c685684a6fb761fe561d284be8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2006 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.pde.internal.ui.elements;
import org.eclipse.swt.graphics.Image;
public abstract class DefaultElement implements IPDEElement {
public Object[] getChildren() {
return null;
}
public Image getImage() {
return null;
}
public String getLabel() {
return ""; //$NON-NLS-1$
}
public Object getParent() {
return null;
}
}