Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Zarna2013-04-18 15:18:11 +0000
committerTomasz Zarna2013-04-19 09:18:55 +0000
commit7e98d91f7a1230b10d7ed5ad598558c1b7565b40 (patch)
tree1224b32b2bdf70fc12b72e6b88f1cf63d2edcb46
parent15e131be4da7ee8268e7462a7c965c4d6bb21fc4 (diff)
downloadeclipse.platform.team-7e98d91f7a1230b10d7ed5ad598558c1b7565b40.tar.gz
eclipse.platform.team-7e98d91f7a1230b10d7ed5ad598558c1b7565b40.tar.xz
eclipse.platform.team-7e98d91f7a1230b10d7ed5ad598558c1b7565b40.zip
ISynchronizeModelElement mentions subclassing but it's an interface
-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