Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Stieber2013-10-22 06:55:54 +0000
committerUwe Stieber2013-10-22 06:55:54 +0000
commitc2aa8d46d5c8b3c001a26f27a23bf4c1b00b8b1c (patch)
tree8ad386b06d1584b7d588cba7ba55ee1222052011 /target_explorer/plugins/org.eclipse.tcf.te.ui/src/org/eclipse/tcf
parent3b3a0a0e7450b24c5827228c751f851d33ed024c (diff)
downloadorg.eclipse.tcf-c2aa8d46d5c8b3c001a26f27a23bf4c1b00b8b1c.tar.gz
org.eclipse.tcf-c2aa8d46d5c8b3c001a26f27a23bf4c1b00b8b1c.tar.xz
org.eclipse.tcf-c2aa8d46d5c8b3c001a26f27a23bf4c1b00b8b1c.zip
Target Explorer: Fix simulator actions and properties available for non-simulator connections
Diffstat (limited to 'target_explorer/plugins/org.eclipse.tcf.te.ui/src/org/eclipse/tcf')
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.ui/src/org/eclipse/tcf/te/ui/interfaces/services/INodePropertiesTableFilterUIDelegate.java29
1 files changed, 29 insertions, 0 deletions
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.ui/src/org/eclipse/tcf/te/ui/interfaces/services/INodePropertiesTableFilterUIDelegate.java b/target_explorer/plugins/org.eclipse.tcf.te.ui/src/org/eclipse/tcf/te/ui/interfaces/services/INodePropertiesTableFilterUIDelegate.java
new file mode 100644
index 000000000..36744088f
--- /dev/null
+++ b/target_explorer/plugins/org.eclipse.tcf.te.ui/src/org/eclipse/tcf/te/ui/interfaces/services/INodePropertiesTableFilterUIDelegate.java
@@ -0,0 +1,29 @@
+/*******************************************************************************
+ * Copyright (c) 2013 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 http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Wind River Systems - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.tcf.te.ui.interfaces.services;
+
+/**
+ * Interface to be implemented by clients to filter the content of the
+ * node properties table control.
+ */
+public interface INodePropertiesTableFilterUIDelegate {
+
+ /**
+ * Returns if or if not the given property is filtered from the node
+ * properties table control.
+ *
+ * @param context The context. Must not be <code>null</code>.
+ * @param name The property name. Must not be <code>null</code>.
+ * @param value The property value or <code>null</code>.
+ *
+ * @return <code>True</code> if the property is filtered, <code>false</code> otherwise.
+ */
+ boolean isFiltered(Object context, String name, Object value);
+}

Back to the top