Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Zarna2009-02-04 10:47:50 +0000
committerTomasz Zarna2009-02-04 10:47:50 +0000
commit713b1696a05cca6f77ed74b0217320b851684a16 (patch)
tree58b52e477b2191a1ce172fc327389509736184fa /bundles/org.eclipse.compare/plugins/org.eclipse.compare/compare/org/eclipse/compare/CompareViewerSwitchingPane.java
parentcd26c022e286c631d1836ac5dab756d6315ea174 (diff)
downloadeclipse.platform.team-713b1696a05cca6f77ed74b0217320b851684a16.tar.gz
eclipse.platform.team-713b1696a05cca6f77ed74b0217320b851684a16.tar.xz
eclipse.platform.team-713b1696a05cca6f77ed74b0217320b851684a16.zip
bug 263459: Add @noreference to CompareViewerSwitchingPane.setTitleArgument
Diffstat (limited to 'bundles/org.eclipse.compare/plugins/org.eclipse.compare/compare/org/eclipse/compare/CompareViewerSwitchingPane.java')
-rw-r--r--bundles/org.eclipse.compare/plugins/org.eclipse.compare/compare/org/eclipse/compare/CompareViewerSwitchingPane.java19
1 files changed, 11 insertions, 8 deletions
diff --git a/bundles/org.eclipse.compare/plugins/org.eclipse.compare/compare/org/eclipse/compare/CompareViewerSwitchingPane.java b/bundles/org.eclipse.compare/plugins/org.eclipse.compare/compare/org/eclipse/compare/CompareViewerSwitchingPane.java
index 22a79d359..bc2892da8 100644
--- a/bundles/org.eclipse.compare/plugins/org.eclipse.compare/compare/org/eclipse/compare/CompareViewerSwitchingPane.java
+++ b/bundles/org.eclipse.compare/plugins/org.eclipse.compare/compare/org/eclipse/compare/CompareViewerSwitchingPane.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2008 IBM Corporation and others.
+ * Copyright (c) 2000, 2009 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
@@ -168,12 +168,13 @@ public abstract class CompareViewerSwitchingPane extends CompareViewerPane {
}
/**
- * Returns the optional title argument that has been set with <code>setTitelArgument</code>
- * or <code>null</code> if no optional title argument has been set.
- * <p>
- * Note: this method is for internal use only. Clients should not call this method.
+ * Returns the optional title argument that has been set with
+ * <code>setTitelArgument</code> or <code>null</code> if no optional title
+ * argument has been set.
*
* @return the optional title argument or <code>null</code>
+ * @noreference This method is for internal use only. Clients should not
+ * call this method.
*/
public String getTitleArgument() {
return fTitleArgument;
@@ -278,9 +279,11 @@ public abstract class CompareViewerSwitchingPane extends CompareViewerPane {
/**
* Sets an additional and optional argument for the pane's title.
- * Note: this method is for internal use only. Clients should not call this method.
- *
- * @param argument an optional argument for the pane's title
+ *
+ * @param argument
+ * an optional argument for the pane's title
+ * @noreference This method is for internal use only. Clients should not
+ * call this method.
*/
public void setTitleArgument(String argument) {
fTitleArgument= argument;

Back to the top