Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2013-04-19 09:22:22 +0000
committerGerrit Code Review @ Eclipse.org2013-04-19 09:22:22 +0000
commit35f1b3a99bb4dcc042cd007a14103e5707eec5e3 (patch)
treed11510948ef780097d15dde51b42c582c91d603e
parent42b0f478f835b3b451542d9fb2aa1bbaf1d1adcf (diff)
parent7e98d91f7a1230b10d7ed5ad598558c1b7565b40 (diff)
downloadeclipse.platform.team-35f1b3a99bb4dcc042cd007a14103e5707eec5e3.tar.gz
eclipse.platform.team-35f1b3a99bb4dcc042cd007a14103e5707eec5e3.tar.xz
eclipse.platform.team-35f1b3a99bb4dcc042cd007a14103e5707eec5e3.zip
Merge "ISynchronizeModelElement mentions subclassing but it's an interface"I20130423-0800
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizeModelElement.java7
1 files changed, 3 insertions, 4 deletions
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizeModelElement.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizeModelElement.java
index 2b6ecbb4b..f7b31ed4c 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizeModelElement.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizeModelElement.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2006 IBM Corporation and others.
+ * Copyright (c) 2000, 2013 IBM Corporation 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
@@ -21,10 +21,9 @@ import org.eclipse.team.internal.ui.TeamUIPlugin;
/**
* These are elements created to display synchronization state to the user. These elements are found in
* the generated diff tree viewer created by a {@link SubscriberParticipant}. Since it implements
- * {@link org.eclipse.compare.ITypedElement} and {@link org.eclipse.compare.structuremergeviewer.ICompareInput}
- * they can be used as input to compare components.
+ * {@link ITypedElement} and {@link ICompareInput} they can be used as input to compare components.
* <p>
- * Clients typically use this class as is, but may subclass if required.
+ * Clients typically use this interface as is, but may implement it if required.
* </p>
* @since 3.0
*/

Back to the top