Skip to content

Commit 529c204

Browse files
committed
Javadoc
1 parent 9bcf4d1 commit 529c204

File tree

8 files changed

+56
-0
lines changed

8 files changed

+56
-0
lines changed

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,13 @@
2626
*/
2727
public class MapDynamicPropertyHandler implements DynamicPropertyHandler {
2828

29+
/**
30+
* Constructs a new instance.
31+
*/
32+
public MapDynamicPropertyHandler() {
33+
// empty
34+
}
35+
2936
@Override
3037
public Object getProperty(final Object object, final String propertyName) {
3138
return ((Map) object).get(propertyName);

src/main/java/org/apache/commons/jxpath/ri/compiler/NodeTest.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,11 @@
2121
* Node test.
2222
*/
2323
public abstract class NodeTest {
24+
25+
/**
26+
* Constructs a new instance for subclasses.
27+
*/
28+
public NodeTest() {
29+
// empty
30+
}
2431
}

src/main/java/org/apache/commons/jxpath/ri/compiler/TreeCompiler.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,13 @@ public class TreeCompiler implements Compiler {
2727

2828
private static final QName QNAME_NAME = new QName(null, "name");
2929

30+
/**
31+
* Constructs a new instance.
32+
*/
33+
public TreeCompiler() {
34+
// empty
35+
}
36+
3037
@Override
3138
public Object and(final Object[] arguments) {
3239
return new CoreOperationAnd(toExpressionArray(arguments));

src/main/java/org/apache/commons/jxpath/servlet/HttpSessionHandler.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,13 @@
2929
*/
3030
public class HttpSessionHandler extends ServletContextHandler {
3131

32+
/**
33+
* Constructs a new instance.
34+
*/
35+
public HttpSessionHandler() {
36+
// empty
37+
}
38+
3239
@Override
3340
protected void collectPropertyNames(final HashSet<String> set, final Object bean) {
3441
final HttpSessionAndServletContext handle = (HttpSessionAndServletContext) bean;

src/main/java/org/apache/commons/jxpath/servlet/PageContextHandler.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,13 @@
2929
*/
3030
public class PageContextHandler implements DynamicPropertyHandler {
3131

32+
/**
33+
* Constructs a new instance.
34+
*/
35+
public PageContextHandler() {
36+
// empty
37+
}
38+
3239
/**
3340
* Returns {@code pageContext.findAttribute(property)}.
3441
*

src/main/java/org/apache/commons/jxpath/servlet/PageScopeContextHandler.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,13 @@ public class PageScopeContextHandler implements DynamicPropertyHandler {
2929

3030
private static final int DEFAULT_LIST_SIZE = 16;
3131

32+
/**
33+
* Constructs a new instance.
34+
*/
35+
public PageScopeContextHandler() {
36+
// empty
37+
}
38+
3239
@Override
3340
public Object getProperty(final Object pageScope, final String property) {
3441
return ((PageScopeContext) pageScope).getAttribute(property);

src/main/java/org/apache/commons/jxpath/servlet/ServletContextHandler.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,13 @@ public class ServletContextHandler implements DynamicPropertyHandler {
3131

3232
private static final int DEFAULT_PROPERTY_COUNT = 16;
3333

34+
/**
35+
* Constructs a new instance.
36+
*/
37+
public ServletContextHandler() {
38+
// empty
39+
}
40+
3441
/**
3542
* Collect the property names from bean, storing in set.
3643
*

src/main/java/org/apache/commons/jxpath/servlet/ServletRequestHandler.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,13 @@
2828
*/
2929
public class ServletRequestHandler extends HttpSessionHandler {
3030

31+
/**
32+
* Constructs a new instance.
33+
*/
34+
public ServletRequestHandler() {
35+
// empty
36+
}
37+
3138
@Override
3239
protected void collectPropertyNames(final HashSet<String> set, final Object bean) {
3340
super.collectPropertyNames(set, bean);

0 commit comments

Comments
 (0)