Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSopot Cela2013-04-17 09:06:47 +0000
committerSopot Cela2013-04-17 09:06:47 +0000
commit7d8ec221ef20c8a95e65144829f26f0ba878fae1 (patch)
tree15761dd1905711e20acb19aa2e01b94596735cac
parent73885c18b8b273e9c8a4be495e9494239dde9d0e (diff)
downloadorg.eclipse.e4.tools-7d8ec221ef20c8a95e65144829f26f0ba878fae1.tar.gz
org.eclipse.e4.tools-7d8ec221ef20c8a95e65144829f26f0ba878fae1.tar.xz
org.eclipse.e4.tools-7d8ec221ef20c8a95e65144829f26f0ba878fae1.zip
Bug 404232 - Move "Part Descriptors" entry in the tree before "Menu
Contributions"
-rw-r--r--bundles/org.eclipse.e4.tools.emf.ui/src/org/eclipse/e4/tools/emf/ui/internal/common/component/ApplicationEditor.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/bundles/org.eclipse.e4.tools.emf.ui/src/org/eclipse/e4/tools/emf/ui/internal/common/component/ApplicationEditor.java b/bundles/org.eclipse.e4.tools.emf.ui/src/org/eclipse/e4/tools/emf/ui/internal/common/component/ApplicationEditor.java
index 73c66bde..43accfc4 100644
--- a/bundles/org.eclipse.e4.tools.emf.ui/src/org/eclipse/e4/tools/emf/ui/internal/common/component/ApplicationEditor.java
+++ b/bundles/org.eclipse.e4.tools.emf.ui/src/org/eclipse/e4/tools/emf/ui/internal/common/component/ApplicationEditor.java
@@ -257,7 +257,7 @@ public class ApplicationEditor extends AbstractComponentEditor {
});
- list.add(new VirtualEntry<Object>(ModelEditor.VIRTUAL_PART_DESCRIPTORS, PART_DESCRIPTOR_CONTAINER__DESCRIPTORS, element, Messages.ApplicationEditor_PartDescriptors) {
+ list.add(new VirtualEntry<Object>(ModelEditor.VIRTUAL_COMMAND, APPLICATION__COMMANDS, element, Messages.ApplicationEditor_Commands) {
@Override
protected boolean accepted(Object o) {
@@ -266,7 +266,7 @@ public class ApplicationEditor extends AbstractComponentEditor {
});
- list.add(new VirtualEntry<Object>(ModelEditor.VIRTUAL_COMMAND, APPLICATION__COMMANDS, element, Messages.ApplicationEditor_Commands) {
+ list.add(new VirtualEntry<Object>(ModelEditor.VIRTUAL_CATEGORIES, APPLICATION__CATEGORIES, element, Messages.ApplicationEditor_Categories) {
@Override
protected boolean accepted(Object o) {
@@ -275,7 +275,7 @@ public class ApplicationEditor extends AbstractComponentEditor {
});
- list.add(new VirtualEntry<Object>(ModelEditor.VIRTUAL_CATEGORIES, APPLICATION__CATEGORIES, element, Messages.ApplicationEditor_Categories) {
+ list.add(new VirtualEntry<Object>(ModelEditor.VIRTUAL_APPLICATION_WINDOWS, ELEMENT_CONTAINER__CHILDREN, element, Messages.ApplicationEditor_Windows) {
@Override
protected boolean accepted(Object o) {
@@ -284,7 +284,7 @@ public class ApplicationEditor extends AbstractComponentEditor {
});
- list.add(new VirtualEntry<Object>(ModelEditor.VIRTUAL_APPLICATION_WINDOWS, ELEMENT_CONTAINER__CHILDREN, element, Messages.ApplicationEditor_Windows) {
+ list.add(new VirtualEntry<Object>(ModelEditor.VIRTUAL_PART_DESCRIPTORS, PART_DESCRIPTOR_CONTAINER__DESCRIPTORS, element, Messages.ApplicationEditor_PartDescriptors) {
@Override
protected boolean accepted(Object o) {

Back to the top