Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortle2012-05-16 20:56:38 +0000
committertle2012-05-16 20:56:38 +0000
commit5538ef021e73448412fb63b9ef84781cc692b891 (patch)
tree876b87039c7d8bd32fd2b50379aa8b46dd994352
parentc6cfbe4db8c68acd1c1ed32e740de92fb28c4c12 (diff)
downloadwebtools.dali-5538ef021e73448412fb63b9ef84781cc692b891.tar.gz
webtools.dali-5538ef021e73448412fb63b9ef84781cc692b891.tar.xz
webtools.dali-5538ef021e73448412fb63b9ef84781cc692b891.zip
Commented out open schema after generation.
-rw-r--r--jaxb/plugins/org.eclipse.jpt.jaxb.ui/src/org/eclipse/jpt/jaxb/ui/internal/wizards/schemagen/SchemaGeneratorWizard.java21
1 files changed, 11 insertions, 10 deletions
diff --git a/jaxb/plugins/org.eclipse.jpt.jaxb.ui/src/org/eclipse/jpt/jaxb/ui/internal/wizards/schemagen/SchemaGeneratorWizard.java b/jaxb/plugins/org.eclipse.jpt.jaxb.ui/src/org/eclipse/jpt/jaxb/ui/internal/wizards/schemagen/SchemaGeneratorWizard.java
index 50422d52a5..67fb5ff2d2 100644
--- a/jaxb/plugins/org.eclipse.jpt.jaxb.ui/src/org/eclipse/jpt/jaxb/ui/internal/wizards/schemagen/SchemaGeneratorWizard.java
+++ b/jaxb/plugins/org.eclipse.jpt.jaxb.ui/src/org/eclipse/jpt/jaxb/ui/internal/wizards/schemagen/SchemaGeneratorWizard.java
@@ -123,16 +123,17 @@ public class SchemaGeneratorWizard extends Wizard implements INewWizard
this.usesMoxy());
genSchemaJob.schedule();
- IPath schemaPath = this.newSchemaFileWizardPage.getContainerFullPath();
- String schemaName = this.newSchemaFileWizardPage.getFileName();
-
- IContainer container = (IContainer)ResourcesPlugin.getWorkspace().getRoot().findMember(schemaPath);
- IFile schemaFile = container.getFile(new Path(schemaName));
-
- OpenSchemaFileJob openSchemaFileJob = new OpenSchemaFileJob(
- this.targetProject,
- schemaFile);
- openSchemaFileJob.schedule();
+// Delaying the release of "open file" functionality (see bug 322567)
+// IPath schemaPath = this.newSchemaFileWizardPage.getContainerFullPath();
+// String schemaName = this.newSchemaFileWizardPage.getFileName();
+//
+// IContainer container = (IContainer)ResourcesPlugin.getWorkspace().getRoot().findMember(schemaPath);
+// IFile schemaFile = container.getFile(new Path(schemaName));
+//
+// OpenSchemaFileJob openSchemaFileJob = new OpenSchemaFileJob(
+// this.targetProject,
+// schemaFile);
+// openSchemaFileJob.schedule();
}
// ********** intra-wizard methods **********

Back to the top