blob: d74eee9c903a073eb3980371be1d2a9a70f9d88e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2005 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
* Jens Lukowski/Innoopract - initial renaming/restructuring
*
*******************************************************************************/
package org.eclipse.wst.sse.ui.views.properties;
/**
* Declares that this IPropertySource might support outright removal of a
* property
*
* @since 1.0
*/
public interface IPropertySourceExtension {
/**
* Returns true if the property matching the given name can be removed,
* false otherwise.
*
* @param name
* the name of the property
* @return whether the property matching this name can be removed
*/
boolean isPropertyRemovable(Object name);
/**
* Removes the property with the given displayed name. If no such property
* exists, nothing is done.
*
* @param name
* the displayed name of the property
*/
void removeProperty(Object name);
}