Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2006-06-01 14:42:27 +0000
committerMichael Valenta2006-06-01 14:42:27 +0000
commitba8f714616270275dcbee36172ee5e3716f7f114 (patch)
tree4bb0e391dd32b3d2a4de229ab00efcd2c537ff9d
parent760bd4e386abc556531782e20f854c3a81ee60ef (diff)
downloadeclipse.platform.team-ba8f714616270275dcbee36172ee5e3716f7f114.tar.gz
eclipse.platform.team-ba8f714616270275dcbee36172ee5e3716f7f114.tar.xz
eclipse.platform.team-ba8f714616270275dcbee36172ee5e3716f7f114.zip
Bug 122919 [Doc] Document use of sync-aware decoration context
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/mapping/SynchronizationStateTester.java10
1 files changed, 6 insertions, 4 deletions
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/mapping/SynchronizationStateTester.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/mapping/SynchronizationStateTester.java
index 6e70bb419..972f4978d 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/mapping/SynchronizationStateTester.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/mapping/SynchronizationStateTester.java
@@ -62,10 +62,12 @@ import org.eclipse.ui.IDecoratorManager;
public class SynchronizationStateTester {
/**
- * Constant that is used as the property key on an {@link IDecorationContext}.
- * If a context passed to a team decorator has this property, the associated
- * state tester will be used by the decorator to determine whether elements
- * have an outgoing change.
+ * Constant that is used as the property key on an
+ * {@link IDecorationContext}. Model based views can assign their state
+ * test to this property in the decoration context. If a context passed to a
+ * team decorator has this property, the associated state tester will be
+ * used by the decorator to determine the team state of the elements being
+ * decorated.
*/
public static final String PROP_TESTER = "org.eclipse.team.ui.syncStateTester"; //$NON-NLS-1$

Back to the top