1 11 package org.eclipse.ui.internal.dialogs; 12 13 import org.eclipse.swt.SWT; 14 import org.eclipse.swt.widgets.Composite; 15 import org.eclipse.swt.widgets.Control; 16 import org.eclipse.ui.dialogs.PropertyPage; 17 18 22 public class EmptyPropertyPage extends PropertyPage { 23 26 27 protected Control createContents(Composite parent) { 28 return new Composite(parent, SWT.NULL); 29 } 30 } 31 | Popular Tags |