Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 08d7080fceaf7bfde589a1adf56c4c17058fe0fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*******************************************************************************
 * Copyright (c) 2009, 2010 IBM Corporation and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * 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
	 */
	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
	 */
    void removePropertyListener(IPropertyListener listener);
}

Back to the top