KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ui > views > properties > IPropertySheetPage


1 /*******************************************************************************
2  * Copyright (c) 2000, 2006 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.ui.views.properties;
12
13 import org.eclipse.ui.ISelectionListener;
14 import org.eclipse.ui.part.IPage;
15
16 /**
17  * Interface for a property sheet page that appears in a property sheet view.
18  * This interface defines the minimum requirement for pages within the
19  * property sheet view, namely they must be pages (implement <code>IPage</code>)
20  * be prepared to contribute actions to the property sheet view's tool bar
21  * and status line, and listen for selection changes in the active part.
22  * <p>
23  * Clients may implement this interface from scratch if the property sheet
24  * viewer's default page is unsuitable for displaying a part's properties.
25  * </p>
26  *
27  * @see PropertySheetPage
28  */

29 public interface IPropertySheetPage extends IPage, ISelectionListener {
30 }
31
Popular Tags