Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeo Treggiari2005-05-20 03:22:26 +0000
committerLeo Treggiari2005-05-20 03:22:26 +0000
commitd4afd6293a57bb87495acebccd8629b42620791d (patch)
treed86a6c8fe577be2f33cdc444baffdac34042d7bf /build/org.eclipse.cdt.managedbuilder.ui.tests/src/org/eclipse/cdt/managedbuilder/ui/tests/wizardPages/NatureBWizardPage.java
parentfb302ff5d6a90949febff11e6a150a5b28c8440c (diff)
downloadorg.eclipse.cdt-d4afd6293a57bb87495acebccd8629b42620791d.tar.gz
org.eclipse.cdt-d4afd6293a57bb87495acebccd8629b42620791d.tar.xz
org.eclipse.cdt-d4afd6293a57bb87495acebccd8629b42620791d.zip
Page navigation tests for custom wizard pages
Diffstat (limited to 'build/org.eclipse.cdt.managedbuilder.ui.tests/src/org/eclipse/cdt/managedbuilder/ui/tests/wizardPages/NatureBWizardPage.java')
-rw-r--r--build/org.eclipse.cdt.managedbuilder.ui.tests/src/org/eclipse/cdt/managedbuilder/ui/tests/wizardPages/NatureBWizardPage.java125
1 files changed, 125 insertions, 0 deletions
diff --git a/build/org.eclipse.cdt.managedbuilder.ui.tests/src/org/eclipse/cdt/managedbuilder/ui/tests/wizardPages/NatureBWizardPage.java b/build/org.eclipse.cdt.managedbuilder.ui.tests/src/org/eclipse/cdt/managedbuilder/ui/tests/wizardPages/NatureBWizardPage.java
new file mode 100644
index 00000000000..614d0317b99
--- /dev/null
+++ b/build/org.eclipse.cdt.managedbuilder.ui.tests/src/org/eclipse/cdt/managedbuilder/ui/tests/wizardPages/NatureBWizardPage.java
@@ -0,0 +1,125 @@
+/*******************************************************************************
+ * Copyright (c) 2005 Texas Instruments Incorporated and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Texas Instruments - initial API and implementation
+ *******************************************************************************/
+
+package org.eclipse.cdt.managedbuilder.ui.tests.wizardPages;
+
+import org.eclipse.cdt.managedbuilder.ui.wizards.MBSCustomPage;
+import org.eclipse.jface.resource.ImageDescriptor;
+import org.eclipse.swt.graphics.Image;
+import org.eclipse.swt.layout.GridData;
+import org.eclipse.swt.layout.GridLayout;
+import org.eclipse.swt.widgets.Composite;
+import org.eclipse.swt.widgets.Control;
+import org.eclipse.swt.widgets.Text;
+import org.eclipse.swt.SWT;
+
+public class NatureBWizardPage extends MBSCustomPage
+{
+
+ private Composite composite;
+
+ public NatureBWizardPage()
+ {
+ pageID = "org.eclipse.cdt.managedbuilder.ui.tests.wizardPages.NatureBWizardPage";
+ }
+
+ public String getName()
+ {
+ return new String("Nature B Wizard Page");
+ }
+
+ public void createControl(Composite parent)
+ {
+
+ composite = new Composite(parent, SWT.NULL);
+ composite.setLayout(new GridLayout());
+ composite.setLayoutData(new GridData(GridData.FILL_BOTH));
+
+ Text pageText = new Text(composite, SWT.CENTER);
+ pageText.setBounds(composite.getBounds());
+ pageText.setText("Nature B Wizard Page");
+ pageText.setVisible(true);
+
+ }
+
+ public void dispose()
+ {
+ composite.dispose();
+
+ }
+
+ public Control getControl()
+ {
+ return composite;
+ }
+
+ public String getDescription()
+ {
+ return new String("My description");
+ }
+
+ public String getErrorMessage()
+ {
+ return new String("My error msg");
+ }
+
+ public Image getImage()
+ {
+ return wizard.getDefaultPageImage();
+ }
+
+ public String getMessage()
+ {
+ // TODO Auto-generated method stub
+ return null;
+ }
+
+ public String getTitle()
+ {
+ return new String("My Title");
+ }
+
+ public void performHelp()
+ {
+ // do nothing
+
+ }
+
+ public void setDescription(String description)
+ {
+ // do nothing
+
+ }
+
+ public void setImageDescriptor(ImageDescriptor image)
+ {
+ // do nothing
+
+ }
+
+ public void setTitle(String title)
+ {
+ // do nothing
+
+ }
+
+ public void setVisible(boolean visible)
+ {
+ composite.setVisible(visible);
+
+ }
+
+ protected boolean isCustomPageComplete()
+ {
+ return true;
+ }
+
+}

Back to the top