blob: fd53bf40b885ef54ef0513b9eac6e017f28b4955 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2010 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.debug.ui;
import org.eclipse.ui.IPropertyListener;
import org.eclipse.ui.ISaveablePart;
import org.eclipse.ui.IWorkbenchPartConstants;
/**
* An extension to the detail pane interface which allows implementors to
* save contents of the details pane.
* <p>
* Clients may implement this interface.
* </p>
*
* @since 3.6
*/
public interface IDetailPane3 extends IDetailPane, ISaveablePart {
/**
* Adds a listener for changes to properties in this detail pane.
* Has no effect if an identical listener is already registered.
* <p>
* The property ids are defined in {@link IWorkbenchPartConstants}.
* </p>
*
* @param listener a property listener
*/
public void addPropertyListener(IPropertyListener listener);
/**
* Removes the given property listener from this workbench part.
* Has no effect if an identical listener is not registered.
*
* @param listener a property listener
*/
public void removePropertyListener(IPropertyListener listener);
}