Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2005-06-02 14:38:48 +0000
committerMichael Valenta2005-06-02 14:38:48 +0000
commit8d9977aa1524e3c755b6e0ad4922eab62e697993 (patch)
tree3f12b843ef346aaafb4bc92e904314be0f89a7bb
parent140c70a520d4723743ce2f55bef1d4bc14de2d4d (diff)
downloadeclipse.platform.team-8d9977aa1524e3c755b6e0ad4922eab62e697993.tar.gz
eclipse.platform.team-8d9977aa1524e3c755b6e0ad4922eab62e697993.tar.xz
eclipse.platform.team-8d9977aa1524e3c755b6e0ad4922eab62e697993.zip
Bug 98008 3.1 RC1 javadoc warnings
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizeView.java4
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ParticipantPagePane.java4
2 files changed, 4 insertions, 4 deletions
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizeView.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizeView.java
index aeaf521dd..2c377272a 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizeView.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizeView.java
@@ -19,9 +19,9 @@ import org.eclipse.ui.IViewPart;
* view. The only behavior provided by the view is a mechanism for switching
* between participants.
* <p>
- * Clients should not add viewActions to this view because they will be global
+ * Clients can not add viewActions to this view because they will be global
* to all participants. Instead, add participant specific actions as described
- * in {@link StructuredViewerAdvisor}.
+ * in {@link org.eclipse.team.ui.synchronize.ISynchronizePageConfiguration}.
* </p>
* <p>
* Clients are not intended to implement this interface.
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ParticipantPagePane.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ParticipantPagePane.java
index 9633640ca..973008783 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ParticipantPagePane.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ParticipantPagePane.java
@@ -102,8 +102,8 @@ public final class ParticipantPagePane {
* Creates a part for the provided participant. The page configuration is used when creating the participant page and the resulting
* compare/merge panes will be configured with the provided compare configuration.
* <p>
- * For example, clients can decide if the user can edit the compare panes by calling {@link CompareConfiguration#setLeftEditable(boolean)}
- * or {@link CompareConfiguration#setRightEditable(boolean)}.
+ * For example, clients can decide if the user can edit the compare panes by calling {@link org.eclipse.compare.CompareConfiguration#setLeftEditable(boolean)}
+ * or {@link org.eclipse.compare.CompareConfiguration#setRightEditable(boolean)}.
* </p>
* @param shell the parent shell for this part
* @param isModal to set the pane as modal or not

Back to the top