Skip to content

Commit e543ba2

Browse files
EcljpseB0Tjukzi
authored andcommitted
Remove blank Javadoc 3
This commit cleans up Javadoc that does not add information. It resolves ecj warnings: `Javadoc: Description expected after ...` It helps to prevent future empty javadoc by disabling missingJavaDoc warnings. This resolves `Javadoc: Missing ...` The modification is a result of regular expression search&replace: in files `*.java` `^[\s]*\*[\s]*(@return|@param[\s]*[^\s]+|@throws[\s]*[^\s]+)\R([\s]*\*[\s]*@|[\s]*\*/\R)` ->`$2` `^([\s]*\*[\s]*\R)([\s]*\*/\R)` ->`$2` `^[\S\t ]*/\*\*\R[\s]*\*/\R` ->`` in files `org.eclipse.jdt.core.prefs` `org\.eclipse\.jdt\.core\.compiler\.problem\.missingJavadoc(Comments|Tags)\=[^\s]*` ->`org\.eclipse\.jdt\.core\.compiler\.problem\.missingJavadoc$1\=ignore`
1 parent ed93242 commit e543ba2

File tree

749 files changed

+75
-3379
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

749 files changed

+75
-3379
lines changed

bundles/org.eclipse.core.commands/.settings/org.eclipse.jdt.core.prefs

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,10 @@ org.eclipse.jdt.core.compiler.problem.missingDefaultCase=ignore
6868
org.eclipse.jdt.core.compiler.problem.missingDeprecatedAnnotation=ignore
6969
org.eclipse.jdt.core.compiler.problem.missingEnumCaseDespiteDefault=disabled
7070
org.eclipse.jdt.core.compiler.problem.missingHashCodeMethod=ignore
71-
org.eclipse.jdt.core.compiler.problem.missingJavadocComments=warning
71+
org.eclipse.jdt.core.compiler.problem.missingJavadocComments=ignore
7272
org.eclipse.jdt.core.compiler.problem.missingJavadocCommentsOverriding=disabled
7373
org.eclipse.jdt.core.compiler.problem.missingJavadocCommentsVisibility=public
74-
org.eclipse.jdt.core.compiler.problem.missingJavadocTags=warning
74+
org.eclipse.jdt.core.compiler.problem.missingJavadocTags=ignore
7575
org.eclipse.jdt.core.compiler.problem.missingJavadocTagsOverriding=disabled
7676
org.eclipse.jdt.core.compiler.problem.missingJavadocTagsVisibility=public
7777
org.eclipse.jdt.core.compiler.problem.missingOverrideAnnotation=warning

bundles/org.eclipse.core.commands/META-INF/MANIFEST.MF

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: %pluginName
44
Bundle-SymbolicName: org.eclipse.core.commands
5-
Bundle-Version: 3.11.200.qualifier
5+
Bundle-Version: 3.11.300.qualifier
66
Bundle-Vendor: %providerName
77
Bundle-Localization: plugin
88
Export-Package: org.eclipse.core.commands,

bundles/org.eclipse.core.commands/src/org/eclipse/core/commands/Category.java

-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,6 @@ private final void fireCategoryChanged(final CategoryEvent categoryEvent) {
128128
*
129129
* @param categoryListener
130130
* The listener to be removed; must not be <code>null</code>.
131-
*
132131
*/
133132
public final void removeCategoryListener(
134133
final ICategoryListener categoryListener) {

bundles/org.eclipse.core.commands/src/org/eclipse/core/commands/Command.java

-2
Original file line numberDiff line numberDiff line change
@@ -877,7 +877,6 @@ public boolean isHandled() {
877877
*
878878
* @param commandListener
879879
* The listener to be removed; must not be <code>null</code>.
880-
*
881880
*/
882881
public void removeCommandListener(final ICommandListener commandListener) {
883882
if (commandListener == null) {
@@ -892,7 +891,6 @@ public void removeCommandListener(final ICommandListener commandListener) {
892891
*
893892
* @param executionListener
894893
* The listener to be removed; must not be <code>null</code>.
895-
*
896894
*/
897895
public void removeExecutionListener(final IExecutionListener executionListener) {
898896
if (executionListener == null) {

bundles/org.eclipse.core.commands/src/org/eclipse/core/commands/ParameterValuesException.java

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
* </p>
2727
*
2828
* @since 3.1
29-
*
3029
*/
3130
public final class ParameterValuesException extends CommandException {
3231

bundles/org.eclipse.core.commands/src/org/eclipse/core/commands/internal/util/Tracing.java

-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
* <p>
2222
* Clients must not extend or instantiate this class.
2323
* </p>
24-
*
2524
*/
2625
public final class Tracing {
2726

bundles/org.eclipse.core.commands/src/org/eclipse/core/commands/operations/DefaultOperationHistory.java

-8
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,6 @@ public final class DefaultOperationHistory implements IOperationHistory {
154154
* An operation that is "absorbing" all other operations while it is open.
155155
* When this is not null, other operations added or executed are added to
156156
* this composite.
157-
*
158157
*/
159158
private ICompositeOperation openComposite;
160159

@@ -222,7 +221,6 @@ public void add(IUndoableOperation operation) {
222221
*
223222
* @param approver
224223
* the IOperationApprover to be added as an approver.
225-
*
226224
*/
227225

228226
@Override
@@ -334,9 +332,6 @@ public void dispose(IUndoContext context, boolean flushUndo, boolean flushRedo,
334332

335333
/**
336334
* Perform the redo. All validity checks have already occurred.
337-
*
338-
* @param monitor
339-
* @param operation
340335
*/
341336
private IStatus doRedo(IProgressMonitor monitor, IAdaptable info, IUndoableOperation operation)
342337
throws ExecutionException {
@@ -394,9 +389,6 @@ private IStatus doRedo(IProgressMonitor monitor, IAdaptable info, IUndoableOpera
394389

395390
/**
396391
* Perform the undo. All validity checks have already occurred.
397-
*
398-
* @param monitor
399-
* @param operation
400392
*/
401393
private IStatus doUndo(IProgressMonitor monitor, IAdaptable info, IUndoableOperation operation)
402394
throws ExecutionException {

bundles/org.eclipse.core.commands/src/org/eclipse/core/commands/operations/IAdvancedUndoableOperation.java

-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
* </p>
3434
*
3535
* @since 3.1
36-
*
3736
*/
3837
public interface IAdvancedUndoableOperation {
3938

@@ -53,7 +52,6 @@ public interface IAdvancedUndoableOperation {
5352
* @param event
5453
* the event that is about to be sent with the pending
5554
* notification
56-
*
5755
*/
5856
void aboutToNotify(OperationHistoryEvent event);
5957

bundles/org.eclipse.core.commands/src/org/eclipse/core/commands/operations/IAdvancedUndoableOperation2.java

-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
* </p>
3030
*
3131
* @since 3.3
32-
*
3332
*/
3433
public interface IAdvancedUndoableOperation2 {
3534
/**

bundles/org.eclipse.core.commands/src/org/eclipse/core/commands/operations/IContextReplacingOperation.java

-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
* another.
2222
*
2323
* @since 3.2
24-
*
2524
*/
2625
public interface IContextReplacingOperation {
2726

@@ -34,7 +33,6 @@ public interface IContextReplacingOperation {
3433
*
3534
* @param original the undo context which is to be replaced
3635
* @param replacement the undo context which is replacing the original
37-
*
3836
*/
3937
void replaceContext(IUndoContext original, IUndoContext replacement);
4038
}

bundles/org.eclipse.core.commands/src/org/eclipse/core/commands/operations/IOperationHistory.java

-3
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,6 @@ void dispose(IUndoContext context, boolean flushUndo, boolean flushRedo,
310310
*
311311
* @throws ExecutionException
312312
* if an exception occurred during execution.
313-
*
314313
*/
315314
IStatus execute(IUndoableOperation operation, IProgressMonitor monitor,
316315
IAdaptable info) throws ExecutionException;
@@ -425,7 +424,6 @@ IStatus execute(IUndoableOperation operation, IProgressMonitor monitor,
425424
*
426425
* @param operation
427426
* the operation that has changed.
428-
*
429427
*/
430428
void operationChanged(IUndoableOperation operation);
431429

@@ -485,7 +483,6 @@ IStatus execute(IUndoableOperation operation, IProgressMonitor monitor,
485483
*
486484
* @throws ExecutionException
487485
* if an exception occurred during redo.
488-
*
489486
*/
490487
IStatus redo(IUndoContext context, IProgressMonitor monitor, IAdaptable info)
491488
throws ExecutionException;

bundles/org.eclipse.core.commands/src/org/eclipse/core/commands/operations/IUndoableOperation.java

-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,6 @@ public interface IUndoableOperation {
110110
* Dispose of the operation. This method is used when the operation is no
111111
* longer kept in the history. Implementers of this method typically
112112
* unregister any listeners.
113-
*
114113
*/
115114
void dispose();
116115

bundles/org.eclipse.core.databinding.beans/.settings/org.eclipse.jdt.core.prefs

+3-2
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,12 @@ org.eclipse.jdt.core.compiler.problem.missingDefaultCase=ignore
6565
org.eclipse.jdt.core.compiler.problem.missingDeprecatedAnnotation=ignore
6666
org.eclipse.jdt.core.compiler.problem.missingEnumCaseDespiteDefault=disabled
6767
org.eclipse.jdt.core.compiler.problem.missingHashCodeMethod=ignore
68-
org.eclipse.jdt.core.compiler.problem.missingJavadocComments=error
68+
org.eclipse.jdt.core.compiler.problem.missingJavadocComments=ignore
6969
org.eclipse.jdt.core.compiler.problem.missingJavadocCommentsOverriding=disabled
7070
org.eclipse.jdt.core.compiler.problem.missingJavadocCommentsVisibility=public
7171
org.eclipse.jdt.core.compiler.problem.missingJavadocTagDescription=return_tag
72-
org.eclipse.jdt.core.compiler.problem.missingJavadocTags=error
72+
org.eclipse.jdt.core.compiler.problem.missingJavadocTags=ignore
73+
org.eclipse.jdt.core.compiler.problem.missingJavadocTagsMethodTypeParameters=disabled
7374
org.eclipse.jdt.core.compiler.problem.missingJavadocTagsOverriding=disabled
7475
org.eclipse.jdt.core.compiler.problem.missingJavadocTagsVisibility=protected
7576
org.eclipse.jdt.core.compiler.problem.missingOverrideAnnotation=warning

bundles/org.eclipse.core.databinding.beans/src/org/eclipse/core/internal/databinding/beans/AnonymousBeanListProperty.java

-5
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,12 @@
2626
* @param <S> type of the source object
2727
* @param <E> type of the elements in the list
2828
* @since 3.3
29-
*
3029
*/
3130
public class AnonymousBeanListProperty<S, E> extends DelegatingListProperty<S, E> {
3231
private final String propertyName;
3332

3433
private Map<Class<S>, IListProperty<S, E>> delegates;
3534

36-
/**
37-
* @param propertyName
38-
* @param elementType
39-
*/
4035
public AnonymousBeanListProperty(String propertyName, Class<E> elementType) {
4136
super(elementType);
4237
this.propertyName = propertyName;

bundles/org.eclipse.core.databinding.beans/src/org/eclipse/core/internal/databinding/beans/AnonymousBeanMapProperty.java

-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
* @param <V> type of the values in the map
2929
*
3030
* @since 3.3
31-
*
3231
*/
3332
@SuppressWarnings({ "rawtypes", "unchecked" })
3433
public class AnonymousBeanMapProperty<S, K, V> extends DelegatingMapProperty<S, K, V> {

bundles/org.eclipse.core.databinding.beans/src/org/eclipse/core/internal/databinding/beans/AnonymousBeanSetProperty.java

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
* @param <S> type of the source object
2727
* @param <E> type of the elements in the set
2828
* @since 3.3
29-
*
3029
*/
3130
public class AnonymousBeanSetProperty<S, E> extends DelegatingSetProperty<S, E> {
3231
private final String propertyName;

bundles/org.eclipse.core.databinding.beans/src/org/eclipse/core/internal/databinding/beans/AnonymousBeanValueProperty.java

-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
* @param <S> type of the source object
3030
* @param <T> type of the value of the property
3131
* @since 3.3
32-
*
3332
*/
3433
public class AnonymousBeanValueProperty<S, T> extends DelegatingValueProperty<S, T> {
3534
private final String propertyName;

bundles/org.eclipse.core.databinding.beans/src/org/eclipse/core/internal/databinding/beans/AnonymousPojoListProperty.java

-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
* @param <E> type of the elements in the list
2828
*
2929
* @since 3.3
30-
*
3130
*/
3231
public class AnonymousPojoListProperty<S, E> extends DelegatingListProperty<S, E> {
3332
private final String propertyName;

bundles/org.eclipse.core.databinding.beans/src/org/eclipse/core/internal/databinding/beans/AnonymousPojoMapProperty.java

-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
* @param <V> type of the values in the map
2929
*
3030
* @since 3.3
31-
*
3231
*/
3332
public class AnonymousPojoMapProperty<S, K, V> extends DelegatingMapProperty<S, K, V> {
3433
private final String propertyName;

bundles/org.eclipse.core.databinding.beans/src/org/eclipse/core/internal/databinding/beans/AnonymousPojoSetProperty.java

-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
* @param <E> type of the elements in the set
2828
*
2929
* @since 3.3
30-
*
3130
*/
3231
public class AnonymousPojoSetProperty<S, E> extends DelegatingSetProperty<S, E> {
3332
private final String propertyName;

bundles/org.eclipse.core.databinding.beans/src/org/eclipse/core/internal/databinding/beans/AnonymousPojoValueProperty.java

-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
* @param <T> type of the value of the property
3030
*
3131
* @since 3.3
32-
*
3332
*/
3433
public class AnonymousPojoValueProperty<S, T> extends DelegatingValueProperty<S, T> {
3534
private final String propertyName;

bundles/org.eclipse.core.databinding.beans/src/org/eclipse/core/internal/databinding/beans/BeanListProperty.java

-5
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,11 @@
3333
* @param <E> type of the elements in the list
3434
*
3535
* @since 3.3
36-
*
3736
*/
3837
public class BeanListProperty<S, E> extends SimpleListProperty<S, E> {
3938
private final PropertyDescriptor propertyDescriptor;
4039
private final Class<E> elementType;
4140

42-
/**
43-
* @param propertyDescriptor
44-
* @param elementType
45-
*/
4641
@SuppressWarnings("unchecked")
4742
public BeanListProperty(PropertyDescriptor propertyDescriptor, Class<E> elementType) {
4843
this.propertyDescriptor = propertyDescriptor;

bundles/org.eclipse.core.databinding.beans/src/org/eclipse/core/internal/databinding/beans/BeanListPropertyDecorator.java

-5
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,11 @@
3333
* @param <E> type of the elements in the list
3434
*
3535
* @since 3.3
36-
*
3736
*/
3837
public class BeanListPropertyDecorator<S, E> extends ListProperty<S, E> implements IBeanListProperty<S, E> {
3938
private final IListProperty<S, E> delegate;
4039
private final PropertyDescriptor propertyDescriptor;
4140

42-
/**
43-
* @param delegate
44-
* @param propertyDescriptor
45-
*/
4641
public BeanListPropertyDecorator(IListProperty<S, E> delegate, PropertyDescriptor propertyDescriptor) {
4742
this.delegate = delegate;
4843
this.propertyDescriptor = propertyDescriptor;

bundles/org.eclipse.core.databinding.beans/src/org/eclipse/core/internal/databinding/beans/BeanMapProperty.java

-6
Original file line numberDiff line numberDiff line change
@@ -31,18 +31,12 @@
3131
* @param <V> type of the values in the map
3232
*
3333
* @since 3.3
34-
*
3534
*/
3635
public class BeanMapProperty<S, K, V> extends SimpleMapProperty<S, K, V> {
3736
private final PropertyDescriptor propertyDescriptor;
3837
private final Class<K> keyType;
3938
private final Class<V> valueType;
4039

41-
/**
42-
* @param propertyDescriptor
43-
* @param keyType
44-
* @param valueType
45-
*/
4640
public BeanMapProperty(PropertyDescriptor propertyDescriptor, Class<K> keyType, Class<V> valueType) {
4741
this.propertyDescriptor = propertyDescriptor;
4842
this.keyType = keyType;

bundles/org.eclipse.core.databinding.beans/src/org/eclipse/core/internal/databinding/beans/BeanMapPropertyDecorator.java

-5
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,11 @@
3434
* @param <V> type of the values in the map
3535
*
3636
* @since 3.3
37-
*
3837
*/
3938
public class BeanMapPropertyDecorator<S, K, V> extends MapProperty<S, K, V> implements IBeanMapProperty<S, K, V> {
4039
private final IMapProperty<S, K, V> delegate;
4140
private final PropertyDescriptor propertyDescriptor;
4241

43-
/**
44-
* @param delegate
45-
* @param propertyDescriptor
46-
*/
4742
public BeanMapPropertyDecorator(IMapProperty<S, K, V> delegate,
4843
PropertyDescriptor propertyDescriptor) {
4944
this.delegate = delegate;

bundles/org.eclipse.core.databinding.beans/src/org/eclipse/core/internal/databinding/beans/BeanObservableListDecorator.java

-4
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,6 @@
3333
public class BeanObservableListDecorator<E> extends DecoratingObservableList<E> implements IBeanObservable {
3434
private PropertyDescriptor propertyDescriptor;
3535

36-
/**
37-
* @param decorated
38-
* @param propertyDescriptor
39-
*/
4036
public BeanObservableListDecorator(IObservableList<E> decorated, PropertyDescriptor propertyDescriptor) {
4137
super(decorated, true);
4238
this.propertyDescriptor = propertyDescriptor;

bundles/org.eclipse.core.databinding.beans/src/org/eclipse/core/internal/databinding/beans/BeanObservableMapDecorator.java

-4
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,6 @@
3434
public class BeanObservableMapDecorator<K, V> extends DecoratingObservableMap<K, V> implements IBeanObservable {
3535
private PropertyDescriptor propertyDescriptor;
3636

37-
/**
38-
* @param decorated
39-
* @param propertyDescriptor
40-
*/
4137
public BeanObservableMapDecorator(IObservableMap<K, V> decorated, PropertyDescriptor propertyDescriptor) {
4238
super(decorated, true);
4339
this.propertyDescriptor = propertyDescriptor;

bundles/org.eclipse.core.databinding.beans/src/org/eclipse/core/internal/databinding/beans/BeanObservableSetDecorator.java

-4
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,6 @@
3333
public class BeanObservableSetDecorator<E> extends DecoratingObservableSet<E> implements IBeanObservable {
3434
private PropertyDescriptor propertyDescriptor;
3535

36-
/**
37-
* @param decorated
38-
* @param propertyDescriptor
39-
*/
4036
public BeanObservableSetDecorator(IObservableSet<E> decorated, PropertyDescriptor propertyDescriptor) {
4137
super(decorated, true);
4238
this.propertyDescriptor = propertyDescriptor;

bundles/org.eclipse.core.databinding.beans/src/org/eclipse/core/internal/databinding/beans/BeanObservableValueDecorator.java

-4
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,6 @@
3333
public class BeanObservableValueDecorator<T> extends DecoratingObservableValue<T> implements IBeanObservable {
3434
private PropertyDescriptor propertyDescriptor;
3535

36-
/**
37-
* @param decorated
38-
* @param propertyDescriptor
39-
*/
4036
public BeanObservableValueDecorator(IObservableValue<T> decorated, PropertyDescriptor propertyDescriptor) {
4137
super(decorated, true);
4238
this.propertyDescriptor = propertyDescriptor;

0 commit comments

Comments
 (0)