1 5 package com.bull.eclipse.jonas.wizard; 6 7 import org.eclipse.jface.wizard.WizardPage; 8 import org.eclipse.swt.SWT; 9 import org.eclipse.swt.widgets.Composite; 10 11 15 16 public class EjbErrorWizardPage extends WizardPage 17 { 18 19 public EjbErrorWizardPage( String pageName ) 20 { 21 super(pageName); 22 } 23 24 public void createControl( Composite parent ) 25 { 26 Composite composite = new Composite(parent, SWT.NULL); 27 setControl(composite); 28 setPageComplete(false); 29 } 30 31 } 32 | Popular Tags |