Author: snjeza
Date: 2012-02-15 19:01:23 -0500 (Wed, 15 Feb 2012)
New Revision: 38793
Modified:
trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/wizard/NewProjectExamplesWizard2.java
Log:
JBIDE-10264 Wizard-ify the project examples
Modified:
trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/wizard/NewProjectExamplesWizard2.java
===================================================================
---
trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/wizard/NewProjectExamplesWizard2.java 2012-02-15
23:26:41 UTC (rev 38792)
+++
trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/wizard/NewProjectExamplesWizard2.java 2012-02-16
00:01:23 UTC (rev 38793)
@@ -106,6 +106,10 @@
// FIXME
}
for (IProjectExamplesWizardPage contributedPage:contributedPages) {
+ String type = projectExample.getImportType();
+ if (type == null || !type.equals(contributedPage.getProjectExampleType())) {
+ continue;
+ }
if (!contributedPage.finishPage()) {
return false;
}
Show replies by date