Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2019-02-15 10:18:29 +0000
committerAlexander Kurtakov2019-02-15 12:55:18 +0000
commit734d10b4a5cbf57135bfa680d905d5bf3b976373 (patch)
tree3700089409f3f683dac0f35636d15730041742b6 /bundles/org.eclipse.team.ui/src/org/eclipse
parentd77d64a0697a313ae4934c2b7f8ec72ef6cc25c7 (diff)
downloadeclipse.platform.team-734d10b4a5cbf57135bfa680d905d5bf3b976373.tar.gz
eclipse.platform.team-734d10b4a5cbf57135bfa680d905d5bf3b976373.tar.xz
eclipse.platform.team-734d10b4a5cbf57135bfa680d905d5bf3b976373.zip
Bug 543933 - Build javadocs with Java 11
Fix javadoc warnings catched by Java 11 tool. (take 2) Change-Id: Ic592eb6ef82b3439c43644170200671756e0b06c Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'bundles/org.eclipse.team.ui/src/org/eclipse')
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizePage.java2
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizeParticipant.java4
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/SubscriberParticipant.java4
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/SynchronizePageActionGroup.java2
4 files changed, 6 insertions, 6 deletions
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizePage.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizePage.java
index 6cecb615e..ffc5aed18 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizePage.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizePage.java
@@ -53,7 +53,7 @@ public interface ISynchronizePage {
* @param configuration the synchronize page configuration
* @param key the property key
* @param newValue
- * @return <code>true<code> if the property change should continue to be
+ * @return <code>true</code> if the property change should continue to be
* fired to other listeners or <code>false</code> to veto the property change
* notification.
*/
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizeParticipant.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizeParticipant.java
index c8ed07717..ca284f7e6 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizeParticipant.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizeParticipant.java
@@ -46,7 +46,7 @@ import org.eclipse.ui.part.IPageBookViewPage;
* enabled <code>synchronizeWizards</code> it will also appear in the global synchronize action
* toolbar.
* <p>
- * A participant is added to the workbench as follows:
+ * A participant is added to the workbench as follows:</p>
* <ul>
* <li>A <code>synchronizeParticipant</code> extension is contributed to
* the team registry. This extension defines the participant id, name, icon, type, and
@@ -56,7 +56,7 @@ import org.eclipse.ui.part.IPageBookViewPage;
* synchronize manager. It then appears in the synchronize view.
* <li>A synchronization can be persistent and thus re-initialized at startup.
* <li>A pinned participant will only be removed from the synchronize manager if it is un-pinned.
- * </ul></p>
+ * </ul>
* <p>
* Once a participant is added to the synchronize manager its lifecycle will be managed. On shutdown if
* the participant is persistable, the participant will be asked to persist state via
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/SubscriberParticipant.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/SubscriberParticipant.java
index c341417d4..f01431ae1 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/SubscriberParticipant.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/SubscriberParticipant.java
@@ -59,13 +59,13 @@ import org.eclipse.ui.progress.IProgressConstants2;
* The subscriber can be configured to be synchronized in the background based on a schedule. This
* effectively refreshes the subscriber and updates the dynamic sync set.
* </p><p>
- * Subclasses will typically want to override the following methods:
+ * Subclasses will typically want to override the following methods:</p>
* <ul>
* <li>initializeConfiguration: participants can add toolbar actions, configure the context menu, decorator.
* <li>saveState and init: persist settings between sessions.
* </ul>
* This class is intended to be subclassed.
- * </p>
+ * <br><br>
* @since 3.0
*/
public abstract class SubscriberParticipant extends AbstractSynchronizeParticipant implements IPropertyChangeListener {
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/SynchronizePageActionGroup.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/SynchronizePageActionGroup.java
index 19bc50cbb..db5754927 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/SynchronizePageActionGroup.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/SynchronizePageActionGroup.java
@@ -43,6 +43,7 @@ import org.eclipse.ui.actions.ActionGroup;
* configuration has been created by the page but before the page is created.
* <p>
* The life cycle of an action group is:
+ * </p>
* <ul>
* <li>the <code>initialize(ISynchronizePageConfiguration}</code> method is
* invoked before the methods to populate menus. This is done to give clients
@@ -67,7 +68,6 @@ import org.eclipse.ui.actions.ActionGroup;
* a chance to adjust the input to actions that operate on all visible elements.
* <li>The <code>dispose()</code> method is called when the page is disposed.
* </ul>
- * </p>
* @since 3.0
*/
public abstract class SynchronizePageActionGroup extends ActionGroup {

Back to the top