All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.debug.ui.IDetailPane3 Maven / Gradle / Ivy

The newest version!
/*******************************************************************************
 * 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.
 * 

* Clients may implement this interface. *

* * @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. *

* The property ids are defined in {@link IWorkbenchPartConstants}. *

* * @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); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy