Skip to content

Commit 5c0e07b

Browse files
EcljpseB0Tjukzi
authored andcommitted
fix javadocs
1 parent 8f86f29 commit 5c0e07b

File tree

17 files changed

+55
-55
lines changed

17 files changed

+55
-55
lines changed

ant/org.eclipse.ant.launching/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.29.0,4.0.0)",
1313
org.apache.ant;bundle-version="1.9.4",
1414
org.eclipse.core.externaltools;bundle-version="[1.0.0,2.0.0)",
1515
org.eclipse.text;bundle-version="[3.5.0,4.0.0)",
16-
org.eclipse.jdt.core;bundle-version="[3.5.0,4.0.0)",
16+
org.eclipse.jdt.core;bundle-version="[3.36.0,4.0.0)",
1717
org.eclipse.core.resources;bundle-version="[3.5.0,4.0.0)"
1818
Bundle-RequiredExecutionEnvironment: JavaSE-17
1919
Bundle-ActivationPolicy: lazy

ant/org.eclipse.ant.ui/Ant Tools Support/org/eclipse/ant/internal/ui/IAntUIConstants.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,6 @@ public interface IAntUIConstants {
107107

108108
/**
109109
* Size of left-hand column for right-justified task name. Used for Ant Build logging.
110-
*
111-
* @see org.eclipse.ant.internal.launching.runtime.logger.AntProcessBuildLogger
112-
* @see org.eclipse.ant.internal.launching.launchConfigurations.RemoteAntBuildListener
113110
*/
114111
public static final int LEFT_COLUMN_SIZE = 15;
115112

ant/org.eclipse.ant.ui/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Require-Bundle: org.eclipse.ui.ide;bundle-version="[3.2.0,4.0.0)";resolution:=op
4646
org.eclipse.jdt.debug.ui;bundle-version="[3.9.0,4.0.0)",
4747
org.eclipse.jdt.launching;bundle-version="[3.11.0,4.0.0)",
4848
org.eclipse.core.runtime;bundle-version="[3.29.0,4.0.0)",
49-
org.eclipse.jdt.core;bundle-version="[3.2.0,4.0.0)",
49+
org.eclipse.jdt.core;bundle-version="[3.36.0,4.0.0)",
5050
org.eclipse.team.core;bundle-version="[3.2.0,4.0.0)",
5151
org.eclipse.ltk.core.refactoring;bundle-version="[3.2.0,4.0.0)",
5252
org.eclipse.core.expressions;bundle-version="[3.2.0,4.0.0)",

debug/org.eclipse.debug.tests/src/org/eclipse/debug/tests/AbstractDebugTest.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@ public IStatus runInUIThread(IProgressMonitor monitor) {
100100
/**
101101
* Waits while given condition is {@code true} for a given amount of
102102
* milliseconds. If the actual wait time exceeds given timeout and condition
103-
* will be still {@code true}, throws {@link AssertionFailedError} with
104-
* given message.
103+
* will be still {@code true}, throws
104+
* {@link junit.framework.AssertionFailedError} with given message.
105105
* <p>
106106
* Will process UI events while waiting in UI thread, if called from
107107
* background thread, just waits.
@@ -119,7 +119,8 @@ public void waitWhile(Predicate<AbstractDebugTest> condition, long timeout, Func
119119
/**
120120
* Waits while given condition is {@code true} for some time. If the actual
121121
* wait time exceeds {@link #testTimeout} and condition will be still
122-
* {@code true}, throws {@link AssertionFailedError} with given message.
122+
* {@code true}, throws {@link junit.framework.AssertionFailedError} with
123+
* given message.
123124
* <p>
124125
* Will process UI events while waiting in UI thread, if called from
125126
* background thread, just waits.

debug/org.eclipse.debug.tests/src/org/eclipse/debug/tests/TestUtil.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,8 @@ public static void processUIEvents(final long millis) throws Exception {
107107
/**
108108
* Waits while given condition is {@code true} for a given amount of
109109
* milliseconds. If the actual wait time exceeds given timeout and condition
110-
* will be still {@code true}, throws {@link AssertionFailedError} with
111-
* given message.
110+
* will be still {@code true}, throws
111+
* {@link junit.framework.AssertionFailedError} with given message.
112112
* <p>
113113
* Will process UI events while waiting in UI thread, if called from
114114
* background thread, just waits.
@@ -141,7 +141,7 @@ public static <T> void waitWhile(Predicate<T> condition, T context, long timeout
141141

142142
/**
143143
* A simplified variant of
144-
* {@link #waitWhile(Function, Object, long, Function)}.
144+
* {@link #waitWhile(Predicate, Object, long, Function)}.
145145
* <p>
146146
* Waits while given condition is {@code true} for a given amount of
147147
* milliseconds.

debug/org.eclipse.debug.tests/src/org/eclipse/debug/tests/console/IOConsoleTestUtil.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -778,7 +778,7 @@ public void setIgnoreFixedConsole(boolean ignoreWrappeding) {
778778
}
779779

780780
/**
781-
* Get identifier for output {@link IOConsolePartition}s.
781+
* Get identifier for output {@code IOConsolePartition}s.
782782
*
783783
* @return output partition identifier
784784
*/
@@ -788,7 +788,7 @@ public static String outputPartitionType() {
788788
}
789789

790790
/**
791-
* Get identifier for input {@link IOConsolePartition}s.
791+
* Get identifier for input {@code IOConsolePartition}s.
792792
*
793793
* @return input partition identifier
794794
*/

debug/org.eclipse.debug.tests/src/org/eclipse/debug/tests/console/IOConsoleTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ protected IOConsoleTestUtil getTestUtil(String title) {
164164
* </p>
165165
*
166166
* @param c the test util containing the console to close
167-
* @param expected content this {@link IOConsole} input stream has received
167+
* @param expectedInputLines content this {@link IOConsole} input stream has received
168168
*/
169169
protected void closeConsole(IOConsoleTestUtil c, String... expectedInputLines) throws IOException {
170170
if (consoleFinished.get()) {

debug/org.eclipse.debug.tests/src/org/eclipse/debug/tests/launching/LaunchConfigurationTests.java

Lines changed: 17 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1388,7 +1388,7 @@ public void launchesTerminated(ILaunch[] launches) {
13881388
* Tests that a launch is properly registered for notifications before a
13891389
* process is spawned and may already propagate a termination event.
13901390
*
1391-
* @see https://github.com/eclipse-platform/eclipse.platform/issues/598
1391+
* see <a href="https://github.com/eclipse-platform/eclipse.platform/issues/598">598</a>
13921392
*/
13931393
@Test
13941394
public void testTerminateLaunchListener_Issue598() throws Exception {
@@ -1619,8 +1619,6 @@ public void testSetAttributePersistence() throws CoreException, IOException {
16191619
/**
16201620
* Ensures that client does not attempt to nest configurations in a sub
16211621
* directory when using local metadata location. See bug 275741.
1622-
*
1623-
* @throws CoreException
16241622
*/
16251623
@Test
16261624
public void testIllegalFileSepCharName() {
@@ -1637,8 +1635,6 @@ public void testIllegalFileSepCharName() {
16371635
* Ensures that client can nest configurations in a sub directory when using
16381636
* a workspace location. See bug 275741. For behavior compatibility a client
16391637
* should be able to use a slash in the configuration name.
1640-
*
1641-
* @throws CoreException
16421638
*/
16431639
@Test
16441640
public void testLegalFileSepCharName() {
@@ -1650,9 +1646,7 @@ public void testLegalFileSepCharName() {
16501646
}
16511647

16521648
/**
1653-
* Test that an illegal name with '<' causes an exception
1654-
*
1655-
* @throws CoreException
1649+
* Test that an illegal name with '&lt;' causes an exception
16561650
*/
16571651
@Test
16581652
public void testIllegalCharName() {
@@ -1722,7 +1716,9 @@ public void testGetTyeImage() throws Exception {
17221716
/**
17231717
* Tests that we can get a project handle from a project name
17241718
*
1725-
* @see https://bugs.eclipse.org/bugs/show_bug.cgi?id=395441
1719+
* see
1720+
* <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=395441">395441</a>
1721+
*
17261722
* @throws Exception
17271723
* @since 3.9.0
17281724
*/
@@ -1745,7 +1741,9 @@ public void testGetProjectMappedResource1() throws Exception {
17451741
/**
17461742
* Tests that we cannot get a project handle from a bogus project name
17471743
*
1748-
* @see https://bugs.eclipse.org/bugs/show_bug.cgi?id=395441
1744+
* see
1745+
* <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=395441">395441</a>
1746+
*
17491747
* @throws Exception
17501748
* @since 3.9.0
17511749
*/
@@ -1767,7 +1765,9 @@ public void testGetProjectMappedResource2() throws Exception {
17671765
/**
17681766
* Tests that we cannot get a project handle from a bogus project name
17691767
*
1770-
* @see https://bugs.eclipse.org/bugs/show_bug.cgi?id=395441
1768+
* see
1769+
* <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=395441">395441</a>
1770+
*
17711771
* @throws Exception
17721772
* @since 3.9.0
17731773
*/
@@ -1794,7 +1794,9 @@ public void testGetProjectMappedResource3() throws Exception {
17941794
/**
17951795
* Tests that we can get a project handle from an absolute project name
17961796
*
1797-
* @see https://bugs.eclipse.org/bugs/show_bug.cgi?id=395441
1797+
* see
1798+
* <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=395441">395441</a>
1799+
*
17981800
* @throws Exception
17991801
* @since 3.9.0
18001802
*/
@@ -1817,7 +1819,9 @@ public void testGetProjectMappedResource4() throws Exception {
18171819
* Tests that a launch created without a backing
18181820
* {@link ILaunchConfiguration} does not cause {@link NullPointerException}s
18191821
*
1820-
* @see https://bugs.eclipse.org/bugs/show_bug.cgi?id=416691
1822+
* see
1823+
* <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=416691">416691</a>
1824+
*
18211825
* @throws Exception
18221826
* @since 3.9.0
18231827
*/

debug/org.eclipse.debug.tests/src/org/eclipse/debug/tests/launching/LaunchManagerTests.java

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -294,8 +294,8 @@ void hasCancellingLaunches(int count) {
294294
* Tests if a launch is properly removed from the launch manager when
295295
* #preLaunchCheck is cancelled
296296
*
297-
* @throws Exception
298-
* @see https://bugs.eclipse.org/bugs/show_bug.cgi?id=437122
297+
* @throws Exception see <a href=
298+
* "https://bugs.eclipse.org/bugs/show_bug.cgi?id=437122">437122</a>
299299
* @since 3.9.100
300300
*/
301301
@Test
@@ -319,8 +319,8 @@ public void testCancelledPreLaunchCheck() throws Exception {
319319
* Tests if a launch is properly removed from the launch manager when
320320
* #finalLaunchCheck is cancelled
321321
*
322-
* @throws Exception
323-
* @see https://bugs.eclipse.org/bugs/show_bug.cgi?id=437122
322+
* @throws Exception see <a
323+
* href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=437122">437122</a>
324324
* @since 3.9.100
325325
*/
326326
@Test
@@ -344,8 +344,8 @@ public void testCancelledFinalLaunchCheck() throws Exception {
344344
* Tests if a launch is properly removed from the launch manager when
345345
* #buildFoLaunch is cancelled
346346
*
347-
* @throws Exception
348-
* @see https://bugs.eclipse.org/bugs/show_bug.cgi?id=437122
347+
* @throws Exception see <a
348+
* href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=437122">437122</a>
349349
* @since 3.9.100
350350
*/
351351
@Test
@@ -444,8 +444,8 @@ private ILaunchConfiguration getThrowingConfiguration(ThrowingEnum throwingEnum)
444444
* Tests if a launch is properly removed from the launch manager when
445445
* <i>throwingEnum</i> method throws exception
446446
*
447-
* @throws Exception
448-
* @see https://bugs.eclipse.org/bugs/show_bug.cgi?id=578302
447+
* @throws Exception see <a href=
448+
* "https://bugs.eclipse.org/bugs/show_bug.cgi?id=578302">578302</a>
449449
*/
450450
private void testThrowingLaunchDelegateMethod(ThrowingEnum throwingEnum) throws Exception {
451451
ILaunchConfiguration config = getThrowingConfiguration(throwingEnum);
@@ -468,8 +468,8 @@ private void testThrowingLaunchDelegateMethod(ThrowingEnum throwingEnum) throws
468468
* Tests if a launch is properly removed from the launch manager when
469469
* #preLaunchCheck throws exception
470470
*
471-
* @throws Exception
472-
* @see https://bugs.eclipse.org/bugs/show_bug.cgi?id=578302
471+
* @throws Exception see <a href=
472+
* "https://bugs.eclipse.org/bugs/show_bug.cgi?id=578302">578302</a>
473473
*/
474474
@Test
475475
public void testThrowingPreLaunchCheck() throws Exception {
@@ -480,8 +480,8 @@ public void testThrowingPreLaunchCheck() throws Exception {
480480
* Tests if a launch is properly removed from the launch manager when
481481
* #finalLaunchCheck throws exception
482482
*
483-
* @throws Exception
484-
* @see https://bugs.eclipse.org/bugs/show_bug.cgi?id=578302
483+
* @throws Exception see <a href=
484+
* "https://bugs.eclipse.org/bugs/show_bug.cgi?id=578302">578302</a>
485485
*/
486486
@Test
487487
public void testThrowingFinalLaunchCheck() throws Exception {
@@ -492,8 +492,8 @@ public void testThrowingFinalLaunchCheck() throws Exception {
492492
* Tests if a launch is properly removed from the launch manager when
493493
* #buildFoLaunch throws exception
494494
*
495-
* @throws Exception
496-
* @see https://bugs.eclipse.org/bugs/show_bug.cgi?id=578302
495+
* @throws Exception see <a href=
496+
* "https://bugs.eclipse.org/bugs/show_bug.cgi?id=578302">578302</a>
497497
*/
498498
@Test
499499
public void testThrowingBuildForLaunch() throws Exception {
@@ -504,8 +504,8 @@ public void testThrowingBuildForLaunch() throws Exception {
504504
* Tests if a launch is properly removed from the launch manager when
505505
* #buildFoLaunch throws exception
506506
*
507-
* @throws Exception
508-
* @see https://bugs.eclipse.org/bugs/show_bug.cgi?id=578302
507+
* @throws Exception see <a href=
508+
* "https://bugs.eclipse.org/bugs/show_bug.cgi?id=578302">578302</a>
509509
*/
510510
@Test
511511
public void testThrowingLaunch() throws Exception {

debug/org.eclipse.debug.tests/src/org/eclipse/debug/tests/viewer/model/UpdateTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ public void testInsertAtInvalidIndex() throws Exception {
327327
* This test forces the viewer to reschedule pending content updates due to
328328
* a remove event from the model.
329329
*
330-
* @see org.eclipse.debug.internal.ui.viewers.model.ModelContentProvider#rescheduleUpdates
330+
* see org.eclipse.debug.internal.ui.viewers.model.TreeModelContentProvider#rescheduleUpdates
331331
*/
332332
@Test
333333
public void testRescheduleUpdates() throws Exception {
@@ -538,7 +538,7 @@ public void testCanceledUpdates4() throws Exception {
538538
* See Bug 373790 - Debug view stays busy after Resume
539539
* </p>
540540
*
541-
* @see org.eclipse.debug.internal.ui.viewers.model.ModelContentProvider#rescheduleUpdates
541+
* see org.eclipse.debug.internal.ui.viewers.model.TreeModelContentProvider#rescheduleUpdates
542542
*/
543543
@Test
544544
public void testCancelUpdatesOnRemoveElementWhileUpdatingSubTree() throws Exception {

0 commit comments

Comments
 (0)