Skip to content

Commit c750587

Browse files
committed
No need for blank Javadoc lines between Javadoc @ tags
1 parent 5e2f41e commit c750587

Some content is hidden

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

56 files changed

+0
-255
lines changed

src/main/java/org/apache/commons/beanutils/BasicDynaBean.java

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,6 @@ public boolean contains(final String name, final String key) {
111111
*
112112
* @param name Name of the property whose value is to be retrieved
113113
* @return The property's value
114-
*
115114
* @throws IllegalArgumentException if there is no property
116115
* of the specified name
117116
*/
@@ -165,7 +164,6 @@ public Object get(final String name) {
165164
* @param name Name of the property whose value is to be retrieved
166165
* @param index Index of the value to be retrieved
167166
* @return The indexed property's value
168-
*
169167
* @throws IllegalArgumentException if there is no property
170168
* of the specified name
171169
* @throws IllegalArgumentException if the specified property
@@ -202,7 +200,6 @@ public Object get(final String name, final int index) {
202200
* @param name Name of the property whose value is to be retrieved
203201
* @param key Key of the value to be retrieved
204202
* @return The mapped property's value
205-
*
206203
* @throws IllegalArgumentException if there is no property
207204
* of the specified name
208205
* @throws IllegalArgumentException if the specified property
@@ -244,7 +241,6 @@ public DynaClass getDynaClass() {
244241
*
245242
* @param name Name of the property for which to retrieve the descriptor
246243
* @return The property descriptor
247-
*
248244
* @throws IllegalArgumentException if this is not a valid property
249245
* name for our DynaClass
250246
*/
@@ -314,7 +310,6 @@ protected boolean isAssignable(final Class<?> dest, final Class<?> source) {
314310
* @param name Name of the property for which a value is to
315311
* be removed
316312
* @param key Key of the value to be removed
317-
*
318313
* @throws IllegalArgumentException if there is no property
319314
* of the specified name
320315
*/
@@ -341,7 +336,6 @@ public void remove(final String name, final String key) {
341336
* @param name Name of the property whose value is to be set
342337
* @param index Index of the property to be set
343338
* @param value Value to which this property is to be set
344-
*
345339
* @throws ConversionException if the specified value cannot be
346340
* converted to the type required for this property
347341
* @throws IllegalArgumentException if there is no property
@@ -387,7 +381,6 @@ public void set(final String name, final int index, final Object value) {
387381
*
388382
* @param name Name of the property whose value is to be set
389383
* @param value Value to which this property is to be set
390-
*
391384
* @throws ConversionException if the specified value cannot be
392385
* converted to the type required for this property
393386
* @throws IllegalArgumentException if there is no property
@@ -422,7 +415,6 @@ public void set(final String name, final Object value) {
422415
* @param name Name of the property whose value is to be set
423416
* @param key Key of the property to be set
424417
* @param value Value to which this property is to be set
425-
*
426418
* @throws ConversionException if the specified value cannot be
427419
* converted to the type required for this property
428420
* @throws IllegalArgumentException if there is no property

src/main/java/org/apache/commons/beanutils/BasicDynaClass.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,6 @@ public DynaProperty[] getDynaProperties() {
182182
* @param name Name of the dynamic property for which a descriptor
183183
* is requested
184184
* @return The descriptor for the specified property
185-
*
186185
* @throws IllegalArgumentException if no property name is specified
187186
*/
188187
@Override
@@ -253,7 +252,6 @@ public DynaBean newInstance()
253252
* implement the <code>DynaBean</code> interface.
254253
*
255254
* @param dynaBeanClass The new Class object
256-
*
257255
* @throws IllegalArgumentException if the specified Class does not
258256
* implement the <code>DynaBean</code> interface
259257
*/

src/main/java/org/apache/commons/beanutils/BeanUtils.java

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ public class BeanUtils {
6161
*
6262
* @param bean Bean to be cloned
6363
* @return the cloned bean
64-
*
6564
* @throws IllegalAccessException if the caller does not have
6665
* access to the property accessor method
6766
* @throws InstantiationException if a new instance of the bean's
@@ -88,7 +87,6 @@ public static Object cloneBean(final Object bean)
8887
*
8988
* @param dest Destination bean whose properties are modified
9089
* @param orig Origin bean whose properties are retrieved
91-
*
9290
* @throws IllegalAccessException if the caller does not have
9391
* access to the property accessor method
9492
* @throws IllegalArgumentException if the <code>dest</code> or
@@ -116,7 +114,6 @@ public static void copyProperties(final Object dest, final Object orig)
116114
* @param bean Bean on which setting is to be performed
117115
* @param name Property name (can be nested/indexed/mapped/combo)
118116
* @param value Value to be set
119-
*
120117
* @throws IllegalAccessException if the caller does not have
121118
* access to the property accessor method
122119
* @throws InvocationTargetException if the property accessor method
@@ -150,7 +147,6 @@ public static <K, V> Map<K, V> createCache() {
150147
*
151148
* @param bean Bean whose properties are to be extracted
152149
* @return Map of property descriptors
153-
*
154150
* @throws IllegalAccessException if the caller does not have
155151
* access to the property accessor method
156152
* @throws InvocationTargetException if the property accessor method
@@ -176,7 +172,6 @@ public static Map<String, String> describe(final Object bean)
176172
* @param bean Bean whose property is to be extracted
177173
* @param name Name of the property to be extracted
178174
* @return The array property value
179-
*
180175
* @throws IllegalAccessException if the caller does not have
181176
* access to the property accessor method
182177
* @throws InvocationTargetException if the property accessor method
@@ -230,7 +225,6 @@ public static int getDebug() {
230225
* @param name <code>propertyname[index]</code> of the property value
231226
* to be extracted
232227
* @return The indexed property's value, converted to a String
233-
*
234228
* @throws IllegalAccessException if the caller does not have
235229
* access to the property accessor method
236230
* @throws InvocationTargetException if the property accessor method
@@ -259,7 +253,6 @@ public static String getIndexedProperty(final Object bean, final String name)
259253
* @param name Simple property name of the property value to be extracted
260254
* @param index Index of the property value to be extracted
261255
* @return The indexed property's value, converted to a String
262-
*
263256
* @throws IllegalAccessException if the caller does not have
264257
* access to the property accessor method
265258
* @throws InvocationTargetException if the property accessor method
@@ -288,7 +281,6 @@ public static String getIndexedProperty(final Object bean,
288281
* @param name <code>propertyname(index)</code> of the property value
289282
* to be extracted
290283
* @return The mapped property's value, converted to a String
291-
*
292284
* @throws IllegalAccessException if the caller does not have
293285
* access to the property accessor method
294286
* @throws InvocationTargetException if the property accessor method
@@ -316,7 +308,6 @@ public static String getMappedProperty(final Object bean, final String name)
316308
* @param name Simple property name of the property value to be extracted
317309
* @param key Lookup key of the property value to be extracted
318310
* @return The mapped property's value, converted to a String
319-
*
320311
* @throws IllegalAccessException if the caller does not have
321312
* access to the property accessor method
322313
* @throws InvocationTargetException if the property accessor method
@@ -344,7 +335,6 @@ public static String getMappedProperty(final Object bean,
344335
* @param bean Bean whose property is to be extracted
345336
* @param name Possibly nested name of the property to be extracted
346337
* @return The nested property's value, converted to a String
347-
*
348338
* @throws IllegalAccessException if the caller does not have
349339
* access to the property accessor method
350340
* @throws IllegalArgumentException if a nested reference to a
@@ -374,7 +364,6 @@ public static String getNestedProperty(final Object bean, final String name)
374364
* @param name Possibly indexed and/or nested name of the property
375365
* to be extracted
376366
* @return The property's value, converted to a String
377-
*
378367
* @throws IllegalAccessException if the caller does not have
379368
* access to the property accessor method
380369
* @throws InvocationTargetException if the property accessor method
@@ -401,7 +390,6 @@ public static String getProperty(final Object bean, final String name)
401390
* @param bean Bean whose property is to be extracted
402391
* @param name Name of the property to be extracted
403392
* @return The property's value, converted to a String
404-
*
405393
* @throws IllegalAccessException if the caller does not have
406394
* access to the property accessor method
407395
* @throws InvocationTargetException if the property accessor method
@@ -490,7 +478,6 @@ public static void setDebug(final int newDebug) {
490478
* @param bean Bean on which setting is to be performed
491479
* @param name Property name (can be nested/indexed/mapped/combo)
492480
* @param value Value to be set
493-
*
494481
* @throws IllegalAccessException if the caller does not have
495482
* access to the property accessor method
496483
* @throws InvocationTargetException if the property accessor method

src/main/java/org/apache/commons/beanutils/BeanUtilsBean.java

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,6 @@ public BeanUtilsBean(
160160
*
161161
* @param bean Bean to be cloned
162162
* @return the cloned bean
163-
*
164163
* @throws IllegalAccessException if the caller does not have
165164
* access to the property accessor method
166165
* @throws InstantiationException if a new instance of the bean's
@@ -196,7 +195,6 @@ public Object cloneBean(final Object bean)
196195
* @param value Value to be converted (may be null)
197196
* @param type Class of the value to be converted to
198197
* @return The converted value
199-
*
200198
* @throws ConversionException if thrown by an underlying Converter
201199
* @since 1.8.0
202200
*/
@@ -256,7 +254,6 @@ private Object convertForCopy(final Object value, final Class<?> type) {
256254
*
257255
* @param dest Destination bean whose properties are modified
258256
* @param orig Origin bean whose properties are retrieved
259-
*
260257
* @throws IllegalAccessException if the caller does not have
261258
* access to the property accessor method
262259
* @throws IllegalArgumentException if the <code>dest</code> or
@@ -356,7 +353,6 @@ public void copyProperties(final Object dest, final Object orig)
356353
* @param bean Bean on which setting is to be performed
357354
* @param name Property name (can be nested/indexed/mapped/combo)
358355
* @param value Value to be set
359-
*
360356
* @throws IllegalAccessException if the caller does not have
361357
* access to the property accessor method
362358
* @throws InvocationTargetException if the property accessor method
@@ -511,7 +507,6 @@ public void copyProperty(final Object bean, String name, Object value)
511507
* </p>
512508
* @param bean Bean whose properties are to be extracted
513509
* @return Map of property descriptors
514-
*
515510
* @throws IllegalAccessException if the caller does not have
516511
* access to the property accessor method
517512
* @throws InvocationTargetException if the property accessor method
@@ -563,7 +558,6 @@ public Map<String, String> describe(final Object bean)
563558
* @param bean Bean whose property is to be extracted
564559
* @param name Name of the property to be extracted
565560
* @return The array property value
566-
*
567561
* @throws IllegalAccessException if the caller does not have
568562
* access to the property accessor method
569563
* @throws InvocationTargetException if the property accessor method
@@ -633,7 +627,6 @@ public ConvertUtilsBean getConvertUtils() {
633627
* @param name <code>propertyname[index]</code> of the property value
634628
* to be extracted
635629
* @return The indexed property's value, converted to a String
636-
*
637630
* @throws IllegalAccessException if the caller does not have
638631
* access to the property accessor method
639632
* @throws InvocationTargetException if the property accessor method
@@ -660,7 +653,6 @@ public String getIndexedProperty(final Object bean, final String name)
660653
* @param name Simple property name of the property value to be extracted
661654
* @param index Index of the property value to be extracted
662655
* @return The indexed property's value, converted to a String
663-
*
664656
* @throws IllegalAccessException if the caller does not have
665657
* access to the property accessor method
666658
* @throws InvocationTargetException if the property accessor method
@@ -690,7 +682,6 @@ public String getIndexedProperty(final Object bean,
690682
* @param name <code>propertyname(index)</code> of the property value
691683
* to be extracted
692684
* @return The mapped property's value, converted to a String
693-
*
694685
* @throws IllegalAccessException if the caller does not have
695686
* access to the property accessor method
696687
* @throws InvocationTargetException if the property accessor method
@@ -717,7 +708,6 @@ public String getMappedProperty(final Object bean, final String name)
717708
* @param name Simple property name of the property value to be extracted
718709
* @param key Lookup key of the property value to be extracted
719710
* @return The mapped property's value, converted to a String
720-
*
721711
* @throws IllegalAccessException if the caller does not have
722712
* access to the property accessor method
723713
* @throws InvocationTargetException if the property accessor method
@@ -742,7 +732,6 @@ public String getMappedProperty(final Object bean,
742732
* @param bean Bean whose property is to be extracted
743733
* @param name Possibly nested name of the property to be extracted
744734
* @return The nested property's value, converted to a String
745-
*
746735
* @throws IllegalAccessException if the caller does not have
747736
* access to the property accessor method
748737
* @throws IllegalArgumentException if a nested reference to a
@@ -769,7 +758,6 @@ public String getNestedProperty(final Object bean, final String name)
769758
* @param name Possibly indexed and/or nested name of the property
770759
* to be extracted
771760
* @return The property's value, converted to a String
772-
*
773761
* @throws IllegalAccessException if the caller does not have
774762
* access to the property accessor method
775763
* @throws InvocationTargetException if the property accessor method
@@ -801,7 +789,6 @@ public PropertyUtilsBean getPropertyUtils() {
801789
* @param bean Bean whose property is to be extracted
802790
* @param name Name of the property to be extracted
803791
* @return The property's value, converted to a String
804-
*
805792
* @throws IllegalAccessException if the caller does not have
806793
* access to the property accessor method
807794
* @throws InvocationTargetException if the property accessor method
@@ -920,7 +907,6 @@ public void populate(final Object bean, final Map<String, ? extends Object> prop
920907
* @param bean Bean on which setting is to be performed
921908
* @param name Property name (can be nested/indexed/mapped/combo)
922909
* @param value Value to be set
923-
*
924910
* @throws IllegalAccessException if the caller does not have
925911
* access to the property accessor method
926912
* @throws InvocationTargetException if the property accessor method

src/main/java/org/apache/commons/beanutils/ConstructorUtils.java

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -217,12 +217,10 @@ private static <T> Constructor<T> getMatchingAccessibleConstructor(
217217
* @param klass the class to be constructed.
218218
* @param arg the actual argument. May be null (this will result in calling the default constructor).
219219
* @return new instance of <code>klazz</code>
220-
*
221220
* @throws NoSuchMethodException If the constructor cannot be found
222221
* @throws IllegalAccessException If an error occurs accessing the constructor
223222
* @throws InvocationTargetException If an error occurs invoking the constructor
224223
* @throws InstantiationException If an error occurs instantiating the class
225-
*
226224
* @see #invokeConstructor(java.lang.Class, java.lang.Object[], java.lang.Class[])
227225
*/
228226
public static <T> T invokeConstructor(final Class<T> klass, final Object arg)
@@ -247,12 +245,10 @@ public static <T> T invokeConstructor(final Class<T> klass, final Object arg)
247245
* @param klass the class to be constructed.
248246
* @param args actual argument array. May be null (this will result in calling the default constructor).
249247
* @return new instance of <code>klazz</code>
250-
*
251248
* @throws NoSuchMethodException If the constructor cannot be found
252249
* @throws IllegalAccessException If an error occurs accessing the constructor
253250
* @throws InvocationTargetException If an error occurs invoking the constructor
254251
* @throws InstantiationException If an error occurs instantiating the class
255-
*
256252
* @see #invokeConstructor(java.lang.Class, java.lang.Object[], java.lang.Class[])
257253
*/
258254
public static <T> T invokeConstructor(final Class<T> klass, Object[] args)
@@ -284,7 +280,6 @@ public static <T> T invokeConstructor(final Class<T> klass, Object[] args)
284280
* @param args actual argument array. May be null (this will result in calling the default constructor).
285281
* @param parameterTypes parameter types array
286282
* @return new instance of <code>klazz</code>
287-
*
288283
* @throws NoSuchMethodException if matching constructor cannot be found
289284
* @throws IllegalAccessException thrown on the constructor's invocation
290285
* @throws InvocationTargetException thrown on the constructor's invocation
@@ -328,12 +323,10 @@ public static <T> T invokeConstructor(
328323
* @param klass the class to be constructed.
329324
* @param arg the actual argument. May be null (this will result in calling the default constructor).
330325
* @return new instance of <code>klazz</code>
331-
*
332326
* @throws NoSuchMethodException If the constructor cannot be found
333327
* @throws IllegalAccessException If an error occurs accessing the constructor
334328
* @throws InvocationTargetException If an error occurs invoking the constructor
335329
* @throws InstantiationException If an error occurs instantiating the class
336-
*
337330
* @see #invokeExactConstructor(java.lang.Class, java.lang.Object[], java.lang.Class[])
338331
*/
339332
public static <T> T invokeExactConstructor(final Class<T> klass, final Object arg)
@@ -358,12 +351,10 @@ public static <T> T invokeExactConstructor(final Class<T> klass, final Object ar
358351
* @param klass the class to be constructed.
359352
* @param args actual argument array. May be null (this will result in calling the default constructor).
360353
* @return new instance of <code>klazz</code>
361-
*
362354
* @throws NoSuchMethodException If the constructor cannot be found
363355
* @throws IllegalAccessException If an error occurs accessing the constructor
364356
* @throws InvocationTargetException If an error occurs invoking the constructor
365357
* @throws InstantiationException If an error occurs instantiating the class
366-
*
367358
* @see #invokeExactConstructor(java.lang.Class, java.lang.Object[], java.lang.Class[])
368359
*/
369360
public static <T> T invokeExactConstructor(final Class<T> klass, Object[] args)
@@ -396,7 +387,6 @@ public static <T> T invokeExactConstructor(final Class<T> klass, Object[] args)
396387
* @param args actual argument array. May be null (this will result in calling the default constructor).
397388
* @param parameterTypes parameter types array
398389
* @return new instance of <code>klazz</code>
399-
*
400390
* @throws NoSuchMethodException if matching constructor cannot be found
401391
* @throws IllegalAccessException thrown on the constructor's invocation
402392
* @throws InvocationTargetException thrown on the constructor's invocation

0 commit comments

Comments
 (0)