Skip to content

Commit c94220c

Browse files
committed
Javadoc
Add an empty line before a Javadoc comment
1 parent f3ded56 commit c94220c

Some content is hidden

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

53 files changed

+69
-3
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
* @since 1.9.1
4343
*/
4444
class BeanIntrospectionData {
45+
4546
/**
4647
* Initializes the map with the names of the write methods for the supported
4748
* properties. The method names - if defined - need to be stored separately because

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
* @since 1.9
3737
*/
3838
public interface BeanIntrospector {
39+
3940
/**
4041
* Performs introspection on a Java class. The current class to be inspected
4142
* can be queried from the passed in {@code IntrospectionContext}

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ public class BeanPredicate implements Predicate {
3535

3636
/** Name of the property whose value will be predicated */
3737
private String propertyName;
38+
3839
/** {@code Predicate} to be applied to the property value */
3940
private Predicate predicate;
4041

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ public class ConstructorUtils {
4545

4646
/** An empty class array */
4747
private static final Class<?>[] EMPTY_CLASS_PARAMETERS = {};
48+
4849
/** An empty object array */
4950
private static final Object[] EMPTY_OBJECT_ARRAY = {};
5051

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
* @since 1.9
4747
*/
4848
public class DefaultBeanIntrospector implements BeanIntrospector {
49+
4950
/** The singleton instance of this class. */
5051
public static final BeanIntrospector INSTANCE = new DefaultBeanIntrospector();
5152

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
* @since 1.9
3636
*/
3737
class DefaultIntrospectionContext implements IntrospectionContext {
38+
3839
/** Constant for an empty array of property descriptors. */
3940
private static final PropertyDescriptor[] EMPTY_DESCRIPTORS = {};
4041

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@
6868
*/
6969
@Deprecated
7070
public class DynaBeanMapDecorator extends BaseDynaBeanMapDecorator<Object> {
71+
7172
/**
7273
* Constructs a read only Map for the specified
7374
* {@link DynaBean}.

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ public DynaProperty(final String name) {
7676
this(name, Object.class);
7777

7878
}
79+
7980
/**
8081
* Construct a property of the specified data type.
8182
*
@@ -107,6 +108,7 @@ public DynaProperty(final String name, final Class<?> type, final Class<?> conte
107108
this.contentType = contentType;
108109

109110
}
111+
110112
/**
111113
* Checks this instance against the specified Object for equality. Overrides the
112114
* default refererence test for equality provided by {@link Object#equals(Object)}
@@ -148,6 +150,7 @@ public boolean equals(final Object obj) {
148150
public Class<?> getContentType() {
149151
return contentType;
150152
}
153+
151154
/**
152155
* Get the name of this property.
153156
*

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
* @since 1.9
3737
*/
3838
public interface IntrospectionContext {
39+
3940
/**
4041
* Adds the given property descriptor to this context. This method is called
4142
* by a {@code BeanIntrospector} during introspection for each detected

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,20 +123,28 @@ public class LazyDynaBean implements DynaBean, Serializable {
123123

124124
/** BigDecimal Zero */
125125
protected static final BigDecimal BigDecimal_ZERO = new BigDecimal("0");
126+
126127
/** Character Space */
127128
protected static final Character Character_SPACE = Character.valueOf(' ');
129+
128130
/** Byte Zero */
129131
protected static final Byte Byte_ZERO = Byte.valueOf((byte)0);
132+
130133
/** Short Zero */
131134
protected static final Short Short_ZERO = Short.valueOf((short)0);
135+
132136
/** Integer Zero */
133137
protected static final Integer Integer_ZERO = Integer.valueOf(0);
138+
134139
/** Long Zero */
135140
protected static final Long Long_ZERO = Long.valueOf(0);
141+
136142
/** Float Zero */
137143
protected static final Float Float_ZERO = Float.valueOf((byte)0);
144+
138145
/** Double Zero */
139146
protected static final Double Double_ZERO = Double.valueOf((byte)0);
147+
140148
/**
141149
* Commons Logging
142150
*/

0 commit comments

Comments
 (0)