KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > bull > eclipse > jonas > wizard > EjbErrorWizardPage


1 /*
2  * Created on Oct 15, 2003
3  *
4  */

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 /**
12  * @author steve krupanszky
13  *
14  */

15
16 public class EjbErrorWizardPage extends WizardPage
17 {
18
19     public EjbErrorWizardPage( String JavaDoc 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