Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Stieber2013-09-18 08:38:35 +0000
committerUwe Stieber2013-09-18 12:06:09 +0000
commit6ed2614942c85108b84f0a1daf655d2766e32caa (patch)
tree3f59b283e40b77118b9bb40da0664bf593ff248e /target_explorer/plugins/org.eclipse.tcf.te.tcf.locator
parentd294f6a7ccf6549c63a2c0f6fcbea41a4c82cc09 (diff)
downloadorg.eclipse.tcf-6ed2614942c85108b84f0a1daf655d2766e32caa.tar.gz
org.eclipse.tcf-6ed2614942c85108b84f0a1daf655d2766e32caa.tar.xz
org.eclipse.tcf-6ed2614942c85108b84f0a1daf655d2766e32caa.zip
Target Explorer: Visualize the active connection as status bar trim area
Diffstat (limited to 'target_explorer/plugins/org.eclipse.tcf.te.tcf.locator')
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.tcf.locator/src/org/eclipse/tcf/te/tcf/locator/interfaces/services/ISelectionService.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.tcf.locator/src/org/eclipse/tcf/te/tcf/locator/interfaces/services/ISelectionService.java b/target_explorer/plugins/org.eclipse.tcf.te.tcf.locator/src/org/eclipse/tcf/te/tcf/locator/interfaces/services/ISelectionService.java
index 363191594..208c7eece 100644
--- a/target_explorer/plugins/org.eclipse.tcf.te.tcf.locator/src/org/eclipse/tcf/te/tcf/locator/interfaces/services/ISelectionService.java
+++ b/target_explorer/plugins/org.eclipse.tcf.te.tcf.locator/src/org/eclipse/tcf/te/tcf/locator/interfaces/services/ISelectionService.java
@@ -32,11 +32,12 @@ public interface ISelectionService extends IService {
/**
* Return a list of possible peer model node candidates.
- * The Se
+ * <p>
* If a selection is given and the filter applies, it will be used as the first element(s).
* Otherwise if a default selection was set using setDefaultSelection(IPeerModel)
* and the filter applies, it will be used as the first element.
* UI implementations of the service should then check the current editor and the system management selection.
+ *
* @param currentSelection The current selection (i.e. from a command handler) or <code>null</code>.
* @param filter The filter for the peer model node candidates or <code>null</code>
* @return Array of peer model nodes or an empty array.
@@ -45,12 +46,14 @@ public interface ISelectionService extends IService {
/**
* Set a new default selection.
+ *
* @param peerModel The default peer model node or <code>null</code> to reset the default.
*/
public void setDefaultSelection(IPeerModel peerModel);
/**
* Get the default selection.
+ *
* @param filter The filter for the peer model node candidates or <code>null</code>
* @return The set default selection if set and the filter applies, <code>null</code> otherwise.
*/

Back to the top