Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnton Leherbauer2014-04-09 15:08:13 +0000
committerEugene Tarassov2014-04-10 17:25:57 +0000
commit0f78ff936f74af8ee64c78ac60fd160a9334851f (patch)
tree803e49baf4a50d42171c73ee7dc70beee94fe24f /plugins/org.eclipse.tcf.core/src/org
parent374789e00c5cb57b6fbbebd658f6075ebd08a43b (diff)
downloadorg.eclipse.tcf-0f78ff936f74af8ee64c78ac60fd160a9334851f.tar.gz
org.eclipse.tcf-0f78ff936f74af8ee64c78ac60fd160a9334851f.tar.xz
org.eclipse.tcf-0f78ff936f74af8ee64c78ac60fd160a9334851f.zip
Bug 432455 - Add an option to show qualified type names
Change-Id: Ibe57318e2fd44c5270dc3ae880f3537c0ac8bd5f Signed-off-by: Anton Leherbauer <anton.leherbauer@windriver.com>
Diffstat (limited to 'plugins/org.eclipse.tcf.core/src/org')
-rw-r--r--plugins/org.eclipse.tcf.core/src/org/eclipse/tcf/internal/services/remote/SymbolsProxy.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/org.eclipse.tcf.core/src/org/eclipse/tcf/internal/services/remote/SymbolsProxy.java b/plugins/org.eclipse.tcf.core/src/org/eclipse/tcf/internal/services/remote/SymbolsProxy.java
index a3de90329..2437f624c 100644
--- a/plugins/org.eclipse.tcf.core/src/org/eclipse/tcf/internal/services/remote/SymbolsProxy.java
+++ b/plugins/org.eclipse.tcf.core/src/org/eclipse/tcf/internal/services/remote/SymbolsProxy.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2011, 2012 Wind River Systems, Inc. and others.
+ * Copyright (c) 2011, 2014 Wind River Systems, Inc. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -106,6 +106,9 @@ public class SymbolsProxy implements ISymbols {
case 2: return SymbolClass.reference;
case 3: return SymbolClass.function;
case 4: return SymbolClass.type;
+ case 5: return SymbolClass.comp_unit;
+ case 6: return SymbolClass.block;
+ case 7: return SymbolClass.namespace;
}
}
return SymbolClass.unknown;

Back to the top