![JAR search and dependency download from the Maven repository](/logo.png)
org.eclipse.ui.views.properties.IPropertySheetPage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.eclipse.rap.ui.views
Show all versions of org.eclipse.rap.ui.views
The RAP Widget Toolkit Eclipse UI Views
The newest version!
/*******************************************************************************
* Copyright (c) 2000, 2006 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.ui.views.properties;
import org.eclipse.ui.ISelectionListener;
import org.eclipse.ui.part.IPage;
/**
* Interface for a property sheet page that appears in a property sheet view.
* This interface defines the minimum requirement for pages within the
* property sheet view, namely they must be pages (implement IPage
)
* be prepared to contribute actions to the property sheet view's tool bar
* and status line, and listen for selection changes in the active part.
*
* Clients may implement this interface from scratch if the property sheet
* viewer's default page is unsuitable for displaying a part's properties.
*
*
* @see PropertySheetPage
*/
public interface IPropertySheetPage extends IPage, ISelectionListener {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy