01: /*******************************************************************************
02: * Copyright (c) 2000, 2006 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: *******************************************************************************/package org.eclipse.ui.internal.dialogs;
11:
12: import org.eclipse.swt.SWT;
13: import org.eclipse.swt.widgets.Composite;
14: import org.eclipse.swt.widgets.Control;
15: import org.eclipse.ui.dialogs.PropertyPage;
16:
17: /*
18: * A page used as a filler for nodes in the property page dialog
19: * for which no page is suppplied.
20: */
21: public class EmptyPropertyPage extends PropertyPage {
22: /**
23: * Creates empty composite for this page content.
24: */
25:
26: protected Control createContents(Composite parent) {
27: return new Composite(parent, SWT.NULL);
28: }
29: }
|