package org.eparapher.rcp.wizards; import org.eclipse.jface.wizard.IWizardPage; import org.eclipse.jface.wizard.WizardPage; import org.eclipse.swt.widgets.Composite; import org.eparapher.rcp.tools.GUIIcons; public class ConfigurationWizardPageOne extends WizardPage implements IWizardPage { protected ConfigurationWizardPageOne() { super("Existing User Keystore"); setTitle("User keystore"); setDescription("Please select an existing keystore or create a new one."); setImageDescriptor(GUIIcons.WIZARD_SIGN_IMG); } public void createControl(Composite parent) { } }