Skip to content

Commit ce218ed

Browse files
committed
Javadoc
1 parent 53e3af1 commit ce218ed

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/java/org/apache/commons/jxpath/util/BasicTypeConverter.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
public class BasicTypeConverter implements TypeConverter {
4444

4545
/**
46-
* Value pointer
46+
* Value {@link Pointer}.
4747
*/
4848
static final class ValuePointer implements Pointer {
4949

@@ -122,8 +122,8 @@ public BasicTypeConverter() {
122122
/**
123123
* Create a collection of a given type.
124124
*
125-
* @param type destination class
126-
* @return Collection
125+
* @param type destination class.
126+
* @return A new Collection.
127127
*/
128128
protected Collection allocateCollection(final Class type) {
129129
if (!type.isInterface() && (type.getModifiers() & Modifier.ABSTRACT) == 0) {
@@ -147,7 +147,7 @@ protected Collection allocateCollection(final Class type) {
147147
*
148148
* @param type destination class
149149
* @param value double
150-
* @return Number
150+
* @return Number A Number, possibly cached.
151151
*/
152152
protected Number allocateNumber(Class type, final double value) {
153153
type = TypeUtils.wrapPrimitive(type);

0 commit comments

Comments
 (0)