blob: 5fcdf044255001383dbff84e7e77d8acc59b3096 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2004 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 <code>IPage</code>)
* 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.
* <p>
* Clients may implement this interface from scratch if the property sheet
* viewer's default page is unsuitable for displaying a part's properties.
* </p>
*
* @see PropertySheetPage
*/
public interface IPropertySheetPage extends IPage, ISelectionListener {
}