Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuergen Haug2014-06-03 16:19:06 +0000
committerHenrik Rentz-Reichert2014-06-05 10:24:46 +0000
commitd6d9c13b2bb441b8248961b01eb6ff318736da10 (patch)
tree1b853ad8dd02da581ab73e9b8cba4cb53a43bf95 /plugins/org.eclipse.etrice.core.room.ui/src/org/eclipse/etrice/core/ui/outline
parentafe75c5565ecdb66f4feaf1487b4a2f124f5ffd2 (diff)
downloadorg.eclipse.etrice-d6d9c13b2bb441b8248961b01eb6ff318736da10.tar.gz
org.eclipse.etrice-d6d9c13b2bb441b8248961b01eb6ff318736da10.tar.xz
org.eclipse.etrice-d6d9c13b2bb441b8248961b01eb6ff318736da10.zip
[ui.common] provide a wizard that helps with the creation of simple
etmap and etphys models Change-Id: I9feb07f9afa56b392eabb1ce1b1acae9875a63ff
Diffstat (limited to 'plugins/org.eclipse.etrice.core.room.ui/src/org/eclipse/etrice/core/ui/outline')
-rw-r--r--plugins/org.eclipse.etrice.core.room.ui/src/org/eclipse/etrice/core/ui/outline/RoomOutlineTreeProvider.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/org.eclipse.etrice.core.room.ui/src/org/eclipse/etrice/core/ui/outline/RoomOutlineTreeProvider.java b/plugins/org.eclipse.etrice.core.room.ui/src/org/eclipse/etrice/core/ui/outline/RoomOutlineTreeProvider.java
index c0ef5d592..0de0a4028 100644
--- a/plugins/org.eclipse.etrice.core.room.ui/src/org/eclipse/etrice/core/ui/outline/RoomOutlineTreeProvider.java
+++ b/plugins/org.eclipse.etrice.core.room.ui/src/org/eclipse/etrice/core/ui/outline/RoomOutlineTreeProvider.java
@@ -289,4 +289,8 @@ public class RoomOutlineTreeProvider extends DefaultOutlineTreeProvider {
private void createExtraNode(EObject obj, IOutlineNode parent, Object text){
createEObjectNode(parent, obj, RoomActivator.getInstance().getImageRegistry().get("defaultoutlinenode.gif"), text, false);
}
+
+ protected boolean _isLeaf(ActorInstanceMapping aim){
+ return true;
+ }
}

Back to the top