Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Schindl2010-07-05 13:26:48 +0000
committerThomas Schindl2010-07-05 13:26:48 +0000
commit87e8767bfa97fee37f783d4f46dc6a5737989cd4 (patch)
tree7ee923a1e3ffc7c4f63e436486454d9563a30fd2 /bundles/org.eclipse.e4.tools.emf.editor3x
parent473347e1e35191a73c2b7d38dd38a063aa2e1ffd (diff)
downloadorg.eclipse.e4.tools-87e8767bfa97fee37f783d4f46dc6a5737989cd4.tar.gz
org.eclipse.e4.tools-87e8767bfa97fee37f783d4f46dc6a5737989cd4.tar.xz
org.eclipse.e4.tools-87e8767bfa97fee37f783d4f46dc6a5737989cd4.zip
Bug 304584 - [Tooling] Implement Workbench-Model-Tooling
* open the created class immediately
Diffstat (limited to 'bundles/org.eclipse.e4.tools.emf.editor3x')
-rw-r--r--bundles/org.eclipse.e4.tools.emf.editor3x/src/org/eclipse/e4/tools/emf/editor3x/extension/HandlerContributionEditor.java1
-rw-r--r--bundles/org.eclipse.e4.tools.emf.editor3x/src/org/eclipse/e4/tools/emf/editor3x/extension/PartContributionEditor.java1
2 files changed, 0 insertions, 2 deletions
diff --git a/bundles/org.eclipse.e4.tools.emf.editor3x/src/org/eclipse/e4/tools/emf/editor3x/extension/HandlerContributionEditor.java b/bundles/org.eclipse.e4.tools.emf.editor3x/src/org/eclipse/e4/tools/emf/editor3x/extension/HandlerContributionEditor.java
index b2bc2a31..e90faa73 100644
--- a/bundles/org.eclipse.e4.tools.emf.editor3x/src/org/eclipse/e4/tools/emf/editor3x/extension/HandlerContributionEditor.java
+++ b/bundles/org.eclipse.e4.tools.emf.editor3x/src/org/eclipse/e4/tools/emf/editor3x/extension/HandlerContributionEditor.java
@@ -60,7 +60,6 @@ public class HandlerContributionEditor implements IContributionClassCreator {
if( cmd.canExecute() ) {
domain.getCommandStack().execute(cmd);
}
- el.open(null);
} catch (JavaModelException e) {
// TODO Auto-generated catch block
e.printStackTrace();
diff --git a/bundles/org.eclipse.e4.tools.emf.editor3x/src/org/eclipse/e4/tools/emf/editor3x/extension/PartContributionEditor.java b/bundles/org.eclipse.e4.tools.emf.editor3x/src/org/eclipse/e4/tools/emf/editor3x/extension/PartContributionEditor.java
index 65195eac..154e887d 100644
--- a/bundles/org.eclipse.e4.tools.emf.editor3x/src/org/eclipse/e4/tools/emf/editor3x/extension/PartContributionEditor.java
+++ b/bundles/org.eclipse.e4.tools.emf.editor3x/src/org/eclipse/e4/tools/emf/editor3x/extension/PartContributionEditor.java
@@ -52,7 +52,6 @@ public class PartContributionEditor implements IContributionClassCreator {
if( cmd.canExecute() ) {
domain.getCommandStack().execute(cmd);
}
- el.open(null);
} catch (JavaModelException e) {
// TODO Auto-generated catch block
e.printStackTrace();

Back to the top