Skip to content

Commit 6f371f9

Browse files
committed
Javadoc
1 parent 65efec0 commit 6f371f9

File tree

107 files changed

+300
-223
lines changed

Some content is hidden

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

107 files changed

+300
-223
lines changed

src/main/java/org/apache/commons/jxpath/ClassFunctions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public class ClassFunctions implements Functions {
5757
private final String namespace;
5858

5959
/**
60-
* Create a new ClassFunctions.
60+
* Constructs a new ClassFunctions.
6161
*
6262
* @param functionClass Class providing the functions
6363
* @param namespace assigned ns

src/main/java/org/apache/commons/jxpath/JXPathAbstractFactoryException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class JXPathAbstractFactoryException extends JXPathException {
2525
private static final long serialVersionUID = -4403564377958943239L;
2626

2727
/**
28-
* Create a new JXPathAbstractFactoryException.
28+
* Constructs a new JXPathAbstractFactoryException.
2929
*
3030
* @param message exception message
3131
*/

src/main/java/org/apache/commons/jxpath/JXPathBasicBeanInfo.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public class JXPathBasicBeanInfo implements JXPathBeanInfo {
6464
private transient HashMap propertyDescriptorMap;
6565

6666
/**
67-
* Create a new JXPathBasicBeanInfo.
67+
* Constructs a new JXPathBasicBeanInfo.
6868
*
6969
* @param clazz bean class
7070
*/
@@ -73,7 +73,7 @@ public JXPathBasicBeanInfo(final Class clazz) {
7373
}
7474

7575
/**
76-
* Create a new JXPathBasicBeanInfo.
76+
* Constructs a new JXPathBasicBeanInfo.
7777
*
7878
* @param clazz bean class
7979
* @param atomic whether objects of this class are treated as atomic objects which have no properties of their own.
@@ -84,7 +84,7 @@ public JXPathBasicBeanInfo(final Class clazz, final boolean atomic) {
8484
}
8585

8686
/**
87-
* Create a new JXPathBasicBeanInfo.
87+
* Constructs a new JXPathBasicBeanInfo.
8888
*
8989
* @param clazz bean class
9090
* @param dynamicPropertyHandlerClass dynamic property handler class

src/main/java/org/apache/commons/jxpath/JXPathContextFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ public static JXPathContextFactory newInstance() {
184184
}
185185

186186
/**
187-
* Create a new JXPathContextFactory.
187+
* Constructs a new JXPathContextFactory.
188188
*/
189189
protected JXPathContextFactory() {
190190
}

src/main/java/org/apache/commons/jxpath/JXPathContextFactoryConfigurationError.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ public class JXPathContextFactoryConfigurationError extends Error {
2626
private static final long serialVersionUID = 2L;
2727

2828
/**
29-
* Create a new {@code JXPathContextFactoryConfigurationError} with no detail mesage.
29+
* Constructs a new {@code JXPathContextFactoryConfigurationError} with no detail mesage.
3030
*/
3131
public JXPathContextFactoryConfigurationError() {
3232
}
3333

3434
/**
35-
* Create a new {@code JXPathContextFactoryConfigurationError} with a given {@code Exception} base cause of the error.
35+
* Constructs a new {@code JXPathContextFactoryConfigurationError} with a given {@code Exception} base cause of the error.
3636
*
3737
* @param cause The exception to be encapsulated in a JXPathContextFactoryConfigurationError.
3838
*/
@@ -41,7 +41,7 @@ public JXPathContextFactoryConfigurationError(final Exception cause) {
4141
}
4242

4343
/**
44-
* Create a new {@code JXPathContextFactoryConfigurationError} with the given {@code Exception} base cause and detail message.
44+
* Constructs a new {@code JXPathContextFactoryConfigurationError} with the given {@code Exception} base cause and detail message.
4545
*
4646
* @param cause The exception to be encapsulated in a JXPathContextFactoryConfigurationError
4747
* @param msg The detail message.
@@ -51,7 +51,7 @@ public JXPathContextFactoryConfigurationError(final Exception cause, final Strin
5151
}
5252

5353
/**
54-
* Create a new {@code JXPathContextFactoryConfigurationError} with the {@code String } specified as an error message.
54+
* Constructs a new {@code JXPathContextFactoryConfigurationError} with the {@code String } specified as an error message.
5555
*
5656
* @param msg The error message for the exception.
5757
*/

src/main/java/org/apache/commons/jxpath/JXPathException.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ public class JXPathException extends RuntimeException {
2525
private static final long serialVersionUID = 2L;
2626

2727
/**
28-
* Create a new {@code JXPathException} with no detail mesage.
28+
* Constructs a new {@code JXPathException} with no detail mesage.
2929
*/
3030
public JXPathException() {
3131
}
3232

3333
/**
34-
* Create a new {@code JXPathException} with the {@code String } specified as an error message.
34+
* Constructs a new {@code JXPathException} with the {@code String } specified as an error message.
3535
*
3636
* @param msg The error message for the exception.
3737
*/
@@ -40,7 +40,7 @@ public JXPathException(final String msg) {
4040
}
4141

4242
/**
43-
* Create a new {@code JXPathException} with the given {@code Exception} base cause and detail message.
43+
* Constructs a new {@code JXPathException} with the given {@code Exception} base cause and detail message.
4444
*
4545
* @param msg The detail message.
4646
* @param cause The exception to be encapsulated in a JXPathException
@@ -50,7 +50,7 @@ public JXPathException(final String msg, final Throwable cause) {
5050
}
5151

5252
/**
53-
* Create a new {@code JXPathException} with a given {@code Throwable} base cause of the error.
53+
* Constructs a new {@code JXPathException} with a given {@code Throwable} base cause of the error.
5454
*
5555
* @param cause The exception to be encapsulated in a JXPathException.
5656
*/

src/main/java/org/apache/commons/jxpath/JXPathFunctionNotFoundException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class JXPathFunctionNotFoundException extends JXPathException {
2525
private static final long serialVersionUID = -8875537628056117241L;
2626

2727
/**
28-
* Create a new JXPathFunctionNotFoundException.
28+
* Constructs a new JXPathFunctionNotFoundException.
2929
*
3030
* @param message exception message
3131
*/

src/main/java/org/apache/commons/jxpath/JXPathInvalidAccessException.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public class JXPathInvalidAccessException extends JXPathException {
2626
private static final long serialVersionUID = -8875537628056117241L;
2727

2828
/**
29-
* Create a new JXPathInvalidAccessException.
29+
* Constructs a new JXPathInvalidAccessException.
3030
*
3131
* @param message exception message
3232
*/
@@ -35,7 +35,7 @@ public JXPathInvalidAccessException(final String message) {
3535
}
3636

3737
/**
38-
* Create a new JXPathInvalidAccessException.
38+
* Constructs a new JXPathInvalidAccessException.
3939
*
4040
* @param message exception message
4141
* @param ex precipitating exception

src/main/java/org/apache/commons/jxpath/JXPathInvalidSyntaxException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class JXPathInvalidSyntaxException extends JXPathException {
2525
private static final long serialVersionUID = 504555366032561816L;
2626

2727
/**
28-
* Create a new JXPathInvalidSyntaxException.
28+
* Constructs a new JXPathInvalidSyntaxException.
2929
*
3030
* @param message relevant message
3131
*/

src/main/java/org/apache/commons/jxpath/JXPathNotFoundException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class JXPathNotFoundException extends JXPathException {
2525
private static final long serialVersionUID = -8875537628056117241L;
2626

2727
/**
28-
* Create a new JXPathNotFoundException.
28+
* Constructs a new JXPathNotFoundException.
2929
*
3030
* @param message exception detail
3131
*/

0 commit comments

Comments
 (0)