blob: b5f9ee6dd8e406517895c066f8407c1e6b842bde [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.internal.themes;
/**
* Theme elements which may potentially be editted by the user should implement
* this interface.
*
* @since 3.0
*/
public interface IEditable {
/**
* Returns whether this object is editable.
*
* @return whether this object is editable.
*/
public boolean isEditable();
}