Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizeManager.java')
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizeManager.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizeManager.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizeManager.java
index 4238734c8..8d352ab78 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizeManager.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizeManager.java
@@ -77,6 +77,16 @@ public interface ISynchronizeManager {
public ISynchronizeParticipantReference[] getSynchronizeParticipants();
/**
+ * Returns the registered synchronize participants with the given type id. It is
+ * possible to have multiple instances of the same participant type.
+ *
+ * @param id the type indentifier for the participant
+ * @return the registered synchronize participants with the given id, or
+ * an empty list if there are none with that id registered.
+ */
+ public ISynchronizeParticipantReference[] get(String id);
+
+ /**
* Returns the registered synchronize participants with the given id. It is
* possible to have multiple instances of the same participant type.
*

Back to the top