This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-jxpath.git
The following commit(s) were added to refs/heads/master by this push: new fc87248 Normalize getter Javadoc fc87248 is described below commit fc87248c89784142a7e3753972155dc43418be86 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Oct 31 06:51:13 2023 -0400 Normalize getter Javadoc --- .../org/apache/commons/jxpath/ExpressionContext.java | 6 +++--- .../org/apache/commons/jxpath/JXPathContext.java | 4 ++-- .../org/apache/commons/jxpath/ri/EvalContext.java | 2 +- .../commons/jxpath/ri/JXPathCompiledExpression.java | 4 ++-- .../jxpath/ri/JXPathContextReferenceImpl.java | 20 ++++++++++---------- .../apache/commons/jxpath/ri/NamespaceResolver.java | 6 +++--- .../java/org/apache/commons/jxpath/ri/QName.java | 4 ++-- .../apache/commons/jxpath/ri/axes/RootContext.java | 10 +++++----- .../jxpath/ri/axes/SimplePathInterpreter.java | 2 +- .../commons/jxpath/ri/compiler/CoreFunction.java | 4 ++-- .../commons/jxpath/ri/compiler/ExpressionPath.java | 2 +- .../jxpath/ri/compiler/ExtensionFunction.java | 2 +- .../jxpath/ri/compiler/NameAttributeTest.java | 2 +- .../commons/jxpath/ri/compiler/NodeNameTest.java | 4 ++-- .../commons/jxpath/ri/compiler/NodeTypeTest.java | 2 +- .../apache/commons/jxpath/ri/compiler/Operation.java | 2 +- .../org/apache/commons/jxpath/ri/compiler/Path.java | 2 +- .../ri/compiler/ProcessingInstructionTest.java | 2 +- .../org/apache/commons/jxpath/ri/compiler/Step.java | 6 +++--- .../commons/jxpath/ri/compiler/TreeCompiler.java | 4 ++-- .../jxpath/ri/compiler/VariableReference.java | 2 +- .../apache/commons/jxpath/ri/model/NodeIterator.java | 4 ++-- .../apache/commons/jxpath/ri/model/NodePointer.java | 12 ++++++------ .../jxpath/ri/model/VariablePointerFactory.java | 2 +- .../jxpath/ri/model/beans/BeanPropertyPointer.java | 8 ++++---- .../jxpath/ri/model/beans/NullElementPointer.java | 2 +- .../jxpath/ri/model/beans/PropertyIterator.java | 2 +- .../jxpath/ri/model/beans/PropertyOwnerPointer.java | 2 +- .../jxpath/ri/model/beans/PropertyPointer.java | 8 ++++---- .../jxpath/ri/model/dom/DOMAttributeIterator.java | 2 +- .../commons/jxpath/ri/model/dom/DOMNodePointer.java | 18 +++++++++--------- .../jxpath/ri/model/jdom/JDOMNodePointer.java | 18 +++++++++--------- .../jxpath/servlet/HttpSessionAndServletContext.java | 4 ++-- .../commons/jxpath/servlet/PageScopeContext.java | 2 +- .../jxpath/servlet/ServletRequestAndContext.java | 2 +- .../commons/jxpath/util/BasicTypeConverter.java | 2 +- .../apache/commons/jxpath/util/KeyManagerUtils.java | 2 +- 37 files changed, 91 insertions(+), 91 deletions(-) diff --git a/src/main/java/org/apache/commons/jxpath/ExpressionContext.java b/src/main/java/org/apache/commons/jxpath/ExpressionContext.java index 7af1b35..3cd44ed 100644 --- a/src/main/java/org/apache/commons/jxpath/ExpressionContext.java +++ b/src/main/java/org/apache/commons/jxpath/ExpressionContext.java @@ -45,21 +45,21 @@ import java.util.List; public interface ExpressionContext { /** - * Get the JXPathContext in which this function is being evaluated. + * Gets the JXPathContext in which this function is being evaluated. * * @return A list representing the current context nodes. */ JXPathContext getJXPathContext(); /** - * Get the current context node. + * Gets the current context node. * * @return The current context node pointer. */ Pointer getContextNodePointer(); /** - * Get the current context node list. Each element of the list is + * Gets the current context node list. Each element of the list is * a Pointer. * * @return A list representing the current context nodes. diff --git a/src/main/java/org/apache/commons/jxpath/JXPathContext.java b/src/main/java/org/apache/commons/jxpath/JXPathContext.java index 8ec5c40..e8967b1 100644 --- a/src/main/java/org/apache/commons/jxpath/JXPathContext.java +++ b/src/main/java/org/apache/commons/jxpath/JXPathContext.java @@ -615,7 +615,7 @@ public abstract class JXPathContext { } /** - * Get the named DecimalFormatSymbols. + * Gets the named DecimalFormatSymbols. * @param name key * @return DecimalFormatSymbols * @see #setDecimalFormatSymbols(String, DecimalFormatSymbols) @@ -936,7 +936,7 @@ public abstract class JXPathContext { } /** - * Get the prefix associated with the specifed namespace URI. + * Gets the prefix associated with the specifed namespace URI. * @param namespaceURI the ns URI to check. * @return String prefix * @since JXPath 1.3 diff --git a/src/main/java/org/apache/commons/jxpath/ri/EvalContext.java b/src/main/java/org/apache/commons/jxpath/ri/EvalContext.java index 5167628..aa80919 100644 --- a/src/main/java/org/apache/commons/jxpath/ri/EvalContext.java +++ b/src/main/java/org/apache/commons/jxpath/ri/EvalContext.java @@ -300,7 +300,7 @@ public abstract class EvalContext implements ExpressionContext, Iterator { } /** - * Get the current position. + * Gets the current position. * @return int position. */ public int getCurrentPosition() { diff --git a/src/main/java/org/apache/commons/jxpath/ri/JXPathCompiledExpression.java b/src/main/java/org/apache/commons/jxpath/ri/JXPathCompiledExpression.java index fd9a88a..7f09844 100644 --- a/src/main/java/org/apache/commons/jxpath/ri/JXPathCompiledExpression.java +++ b/src/main/java/org/apache/commons/jxpath/ri/JXPathCompiledExpression.java @@ -42,7 +42,7 @@ public class JXPathCompiledExpression implements CompiledExpression { } /** - * Get the source expression. + * Gets the source expression. * @return String */ protected String getXPath() { @@ -50,7 +50,7 @@ public class JXPathCompiledExpression implements CompiledExpression { } /** - * Get the compiled expression. + * Gets the compiled expression. * @return Expression */ protected Expression getExpression() { diff --git a/src/main/java/org/apache/commons/jxpath/ri/JXPathContextReferenceImpl.java b/src/main/java/org/apache/commons/jxpath/ri/JXPathContextReferenceImpl.java index 7a350a1..50b1d3b 100644 --- a/src/main/java/org/apache/commons/jxpath/ri/JXPathContextReferenceImpl.java +++ b/src/main/java/org/apache/commons/jxpath/ri/JXPathContextReferenceImpl.java @@ -159,7 +159,7 @@ public class JXPathContextReferenceImpl extends JXPathContext { } /** - * Get the registered NodePointerFactories. + * Gets the registered NodePointerFactories. * @return NodePointerFactory[] */ public static NodePointerFactory[] getNodePointerFactories() { @@ -361,7 +361,7 @@ public class JXPathContextReferenceImpl extends JXPathContext { // } /** - * Get the value indicated. + * Gets the value indicated. * @param xpath String * @param expr Expression * @return Object @@ -407,7 +407,7 @@ public class JXPathContextReferenceImpl extends JXPathContext { } /** - * Get the value indicated. + * Gets the value indicated. * @param xpath expression * @param expr compiled Expression * @param requiredType Class @@ -460,7 +460,7 @@ public class JXPathContextReferenceImpl extends JXPathContext { } /** - * Get a pointer to the specified path/expression. + * Gets a pointer to the specified path/expression. * @param xpath String * @param expr compiled Expression * @return Pointer @@ -715,7 +715,7 @@ public class JXPathContextReferenceImpl extends JXPathContext { } /** - * Get absolute root pointer. + * Gets absolute root pointer. * @return NodePointer */ private NodePointer getAbsoluteRootPointer() { @@ -723,7 +723,7 @@ public class JXPathContextReferenceImpl extends JXPathContext { } /** - * Get the evaluation context. + * Gets the evaluation context. * @return EvalContext */ private EvalContext getEvalContext() { @@ -732,7 +732,7 @@ public class JXPathContextReferenceImpl extends JXPathContext { } /** - * Get the absolute root context. + * Gets the absolute root context. * @return EvalContext */ public EvalContext getAbsoluteRootContext() { @@ -741,7 +741,7 @@ public class JXPathContextReferenceImpl extends JXPathContext { } /** - * Get a VariablePointer for the given variable name. + * Gets a VariablePointer for the given variable name. * @param name variable name * @return NodePointer */ @@ -751,7 +751,7 @@ public class JXPathContextReferenceImpl extends JXPathContext { } /** - * Get the named Function. + * Gets the named Function. * @param functionName name * @param parameters function args * @return Function @@ -812,7 +812,7 @@ public class JXPathContextReferenceImpl extends JXPathContext { } /** - * Get the namespace resolver. + * Gets the namespace resolver. * @return NamespaceResolver */ public NamespaceResolver getNamespaceResolver() { diff --git a/src/main/java/org/apache/commons/jxpath/ri/NamespaceResolver.java b/src/main/java/org/apache/commons/jxpath/ri/NamespaceResolver.java index 2713e31..4440082 100644 --- a/src/main/java/org/apache/commons/jxpath/ri/NamespaceResolver.java +++ b/src/main/java/org/apache/commons/jxpath/ri/NamespaceResolver.java @@ -104,7 +104,7 @@ public class NamespaceResolver implements Cloneable, Serializable { } /** - * Get the namespace context pointer. + * Gets the namespace context pointer. * @return Pointer */ public Pointer getNamespaceContextPointer() { @@ -145,7 +145,7 @@ public class NamespaceResolver implements Cloneable, Serializable { } /** - * Get the prefix associated with the specifed namespace URI. + * Gets the prefix associated with the specifed namespace URI. * @param namespaceURI the ns URI to check. * @return String prefix */ @@ -156,7 +156,7 @@ public class NamespaceResolver implements Cloneable, Serializable { } /** - * Get the nearest prefix found that matches an externally-registered namespace. + * Gets the nearest prefix found that matches an externally-registered namespace. * @param namespaceURI the ns URI to check. * @return String prefix if found. * @since JXPath 1.3 diff --git a/src/main/java/org/apache/commons/jxpath/ri/QName.java b/src/main/java/org/apache/commons/jxpath/ri/QName.java index 25d8e95..50d44f3 100644 --- a/src/main/java/org/apache/commons/jxpath/ri/QName.java +++ b/src/main/java/org/apache/commons/jxpath/ri/QName.java @@ -53,7 +53,7 @@ public class QName implements Serializable { } /** - * Get the prefix of this QName. + * Gets the prefix of this QName. * @return String */ public String getPrefix() { @@ -61,7 +61,7 @@ public class QName implements Serializable { } /** - * Get the local name. + * Gets the local name. * @return String */ public String getName() { diff --git a/src/main/java/org/apache/commons/jxpath/ri/axes/RootContext.java b/src/main/java/org/apache/commons/jxpath/ri/axes/RootContext.java index 4d56111..93925e0 100644 --- a/src/main/java/org/apache/commons/jxpath/ri/axes/RootContext.java +++ b/src/main/java/org/apache/commons/jxpath/ri/axes/RootContext.java @@ -61,7 +61,7 @@ public class RootContext extends EvalContext { } /** - * Get absolute root context + * Gets absolute root context * @return EvalContext */ public EvalContext getAbsoluteRootContext() { @@ -99,7 +99,7 @@ public class RootContext extends EvalContext { } /** - * Get a context that points to the specified object. + * Gets a context that points to the specified object. * @param constant object * @return EvalContext */ @@ -124,7 +124,7 @@ public class RootContext extends EvalContext { } /** - * Get variable context. + * Gets variable context. * @param variableName variable name * @return EvalContext */ @@ -136,7 +136,7 @@ public class RootContext extends EvalContext { } /** - * Get the specified function from the context. + * Gets the specified function from the context. * @param functionName QName * @param parameters Object[] * @return Function @@ -146,7 +146,7 @@ public class RootContext extends EvalContext { } /** - * Get a registered value. + * Gets a registered value. * @param id int * @return Object */ diff --git a/src/main/java/org/apache/commons/jxpath/ri/axes/SimplePathInterpreter.java b/src/main/java/org/apache/commons/jxpath/ri/axes/SimplePathInterpreter.java index 2efd142..09dd016 100644 --- a/src/main/java/org/apache/commons/jxpath/ri/axes/SimplePathInterpreter.java +++ b/src/main/java/org/apache/commons/jxpath/ri/axes/SimplePathInterpreter.java @@ -869,7 +869,7 @@ public class SimplePathInterpreter { } /** - * Get a NodeIterator. + * Gets a NodeIterator. * @param context evaluation context * @param pointer owning pointer * @param step triggering step diff --git a/src/main/java/org/apache/commons/jxpath/ri/compiler/CoreFunction.java b/src/main/java/org/apache/commons/jxpath/ri/compiler/CoreFunction.java index 9b3bd01..3200ba4 100644 --- a/src/main/java/org/apache/commons/jxpath/ri/compiler/CoreFunction.java +++ b/src/main/java/org/apache/commons/jxpath/ri/compiler/CoreFunction.java @@ -53,7 +53,7 @@ public class CoreFunction extends Operation { } /** - * Get the function code. + * Gets the function code. * @return int function code */ public int getFunctionCode() { @@ -61,7 +61,7 @@ public class CoreFunction extends Operation { } /** - * Get the name of this function. + * Gets the name of this function. * @return String function name */ protected String getFunctionName() { diff --git a/src/main/java/org/apache/commons/jxpath/ri/compiler/ExpressionPath.java b/src/main/java/org/apache/commons/jxpath/ri/compiler/ExpressionPath.java index 39853fa..5c8c094 100644 --- a/src/main/java/org/apache/commons/jxpath/ri/compiler/ExpressionPath.java +++ b/src/main/java/org/apache/commons/jxpath/ri/compiler/ExpressionPath.java @@ -51,7 +51,7 @@ public class ExpressionPath extends Path { } /** - * Get the expression. + * Gets the expression. * @return Expression */ public Expression getExpression() { diff --git a/src/main/java/org/apache/commons/jxpath/ri/compiler/ExtensionFunction.java b/src/main/java/org/apache/commons/jxpath/ri/compiler/ExtensionFunction.java index c8a9b27..fbb12e7 100644 --- a/src/main/java/org/apache/commons/jxpath/ri/compiler/ExtensionFunction.java +++ b/src/main/java/org/apache/commons/jxpath/ri/compiler/ExtensionFunction.java @@ -44,7 +44,7 @@ public class ExtensionFunction extends Operation { } /** - * Get the function name + * Gets the function name * @return QName */ public QName getFunctionName() { diff --git a/src/main/java/org/apache/commons/jxpath/ri/compiler/NameAttributeTest.java b/src/main/java/org/apache/commons/jxpath/ri/compiler/NameAttributeTest.java index 3bb9843..0df8e9d 100644 --- a/src/main/java/org/apache/commons/jxpath/ri/compiler/NameAttributeTest.java +++ b/src/main/java/org/apache/commons/jxpath/ri/compiler/NameAttributeTest.java @@ -33,7 +33,7 @@ public class NameAttributeTest extends CoreOperationEqual { } /** - * Get the name test expression. + * Gets the name test expression. * @return Expression */ public Expression getNameTestExpression() { diff --git a/src/main/java/org/apache/commons/jxpath/ri/compiler/NodeNameTest.java b/src/main/java/org/apache/commons/jxpath/ri/compiler/NodeNameTest.java index 6dd3ec6..118f700 100644 --- a/src/main/java/org/apache/commons/jxpath/ri/compiler/NodeNameTest.java +++ b/src/main/java/org/apache/commons/jxpath/ri/compiler/NodeNameTest.java @@ -43,7 +43,7 @@ public class NodeNameTest extends NodeTest { } /** - * Get the node name. + * Gets the node name. * @return QName */ public QName getNodeName() { @@ -51,7 +51,7 @@ public class NodeNameTest extends NodeTest { } /** - * Get the ns URI. + * Gets the ns URI. * @return String */ public String getNamespaceURI() { diff --git a/src/main/java/org/apache/commons/jxpath/ri/compiler/NodeTypeTest.java b/src/main/java/org/apache/commons/jxpath/ri/compiler/NodeTypeTest.java index 1629078..545c373 100644 --- a/src/main/java/org/apache/commons/jxpath/ri/compiler/NodeTypeTest.java +++ b/src/main/java/org/apache/commons/jxpath/ri/compiler/NodeTypeTest.java @@ -32,7 +32,7 @@ public class NodeTypeTest extends NodeTest { } /** - * Get the nodeType. + * Gets the nodeType. * @return int */ public int getNodeType() { diff --git a/src/main/java/org/apache/commons/jxpath/ri/compiler/Operation.java b/src/main/java/org/apache/commons/jxpath/ri/compiler/Operation.java index aec5ac3..b8c36b5 100644 --- a/src/main/java/org/apache/commons/jxpath/ri/compiler/Operation.java +++ b/src/main/java/org/apache/commons/jxpath/ri/compiler/Operation.java @@ -32,7 +32,7 @@ public abstract class Operation extends Expression { } /** - * Get the arguments. + * Gets the arguments. * @return Expression[] */ public Expression[] getArguments() { diff --git a/src/main/java/org/apache/commons/jxpath/ri/compiler/Path.java b/src/main/java/org/apache/commons/jxpath/ri/compiler/Path.java index d05b58a..e933dc8 100644 --- a/src/main/java/org/apache/commons/jxpath/ri/compiler/Path.java +++ b/src/main/java/org/apache/commons/jxpath/ri/compiler/Path.java @@ -51,7 +51,7 @@ public abstract class Path extends Expression { } /** - * Get the steps. + * Gets the steps. * @return Step[] */ public Step[] getSteps() { diff --git a/src/main/java/org/apache/commons/jxpath/ri/compiler/ProcessingInstructionTest.java b/src/main/java/org/apache/commons/jxpath/ri/compiler/ProcessingInstructionTest.java index 2fc1c78..1410620 100644 --- a/src/main/java/org/apache/commons/jxpath/ri/compiler/ProcessingInstructionTest.java +++ b/src/main/java/org/apache/commons/jxpath/ri/compiler/ProcessingInstructionTest.java @@ -30,7 +30,7 @@ public class ProcessingInstructionTest extends NodeTest { } /** - * Get the target. + * Gets the target. * @return String */ public String getTarget() { diff --git a/src/main/java/org/apache/commons/jxpath/ri/compiler/Step.java b/src/main/java/org/apache/commons/jxpath/ri/compiler/Step.java index 8dc0e48..09c23b3 100644 --- a/src/main/java/org/apache/commons/jxpath/ri/compiler/Step.java +++ b/src/main/java/org/apache/commons/jxpath/ri/compiler/Step.java @@ -38,7 +38,7 @@ public class Step { } /** - * Get the axis code. + * Gets the axis code. * @return int */ public int getAxis() { @@ -46,7 +46,7 @@ public class Step { } /** - * Get the step test. + * Gets the step test. * @return NodeTest */ public NodeTest getNodeTest() { @@ -54,7 +54,7 @@ public class Step { } /** - * Get the predicates. + * Gets the predicates. * @return Expression[] */ public Expression[] getPredicates() { diff --git a/src/main/java/org/apache/commons/jxpath/ri/compiler/TreeCompiler.java b/src/main/java/org/apache/commons/jxpath/ri/compiler/TreeCompiler.java index 87a9261..3f90894 100644 --- a/src/main/java/org/apache/commons/jxpath/ri/compiler/TreeCompiler.java +++ b/src/main/java/org/apache/commons/jxpath/ri/compiler/TreeCompiler.java @@ -178,7 +178,7 @@ public class TreeCompiler implements Compiler { } /** - * Get an Object[] as an Expression[]. + * Gets an Object[] as an Expression[]. * @param array Object[] * @return Expression[] */ @@ -194,7 +194,7 @@ public class TreeCompiler implements Compiler { } /** - * Get an Object[] as a Step[]. + * Gets an Object[] as a Step[]. * @param array Object[] * @return Step[] */ diff --git a/src/main/java/org/apache/commons/jxpath/ri/compiler/VariableReference.java b/src/main/java/org/apache/commons/jxpath/ri/compiler/VariableReference.java index 4a71a09..c0f664c 100644 --- a/src/main/java/org/apache/commons/jxpath/ri/compiler/VariableReference.java +++ b/src/main/java/org/apache/commons/jxpath/ri/compiler/VariableReference.java @@ -35,7 +35,7 @@ public class VariableReference extends Expression { } /** - * Get the variable name. + * Gets the variable name. * @return QName */ public QName getVariableName() { diff --git a/src/main/java/org/apache/commons/jxpath/ri/model/NodeIterator.java b/src/main/java/org/apache/commons/jxpath/ri/model/NodeIterator.java index 0283f59..1fa7a08 100644 --- a/src/main/java/org/apache/commons/jxpath/ri/model/NodeIterator.java +++ b/src/main/java/org/apache/commons/jxpath/ri/model/NodeIterator.java @@ -22,7 +22,7 @@ package org.apache.commons.jxpath.ri.model; public interface NodeIterator { /** - * Get the current iterator position. + * Gets the current iterator position. * @return int position */ int getPosition(); @@ -35,7 +35,7 @@ public interface NodeIterator { boolean setPosition(int position); /** - * Get the NodePointer at the current position. + * Gets the NodePointer at the current position. * @return NodePointer */ NodePointer getNodePointer(); diff --git a/src/main/java/org/apache/commons/jxpath/ri/model/NodePointer.java b/src/main/java/org/apache/commons/jxpath/ri/model/NodePointer.java index ed53b39..ebb5902 100644 --- a/src/main/java/org/apache/commons/jxpath/ri/model/NodePointer.java +++ b/src/main/java/org/apache/commons/jxpath/ri/model/NodePointer.java @@ -142,7 +142,7 @@ public abstract class NodePointer implements Pointer { } /** - * Get the NamespaceResolver associated with this NodePointer. + * Gets the NamespaceResolver associated with this NodePointer. * @return NamespaceResolver */ public NamespaceResolver getNamespaceResolver() { @@ -161,7 +161,7 @@ public abstract class NodePointer implements Pointer { } /** - * Get the parent pointer. + * Gets the parent pointer. * @return NodePointer */ public NodePointer getParent() { @@ -173,7 +173,7 @@ public abstract class NodePointer implements Pointer { } /** - * Get the immediate parent pointer. + * Gets the immediate parent pointer. * @return NodePointer */ public NodePointer getImmediateParentPointer() { @@ -368,7 +368,7 @@ public abstract class NodePointer implements Pointer { } /** - * Get the root node. + * Gets the root node. * @return Object value of this pointer's root (top parent). */ @Override @@ -632,7 +632,7 @@ public abstract class NodePointer implements Pointer { } /** - * Get the default ns uri + * Gets the default ns uri * @return String uri */ protected String getDefaultNamespaceURI() { @@ -877,7 +877,7 @@ public abstract class NodePointer implements Pointer { } /** - * Get the AbstractFactory associated with the specified JXPathContext. + * Gets the AbstractFactory associated with the specified JXPathContext. * @param context JXPathContext * @return AbstractFactory */ diff --git a/src/main/java/org/apache/commons/jxpath/ri/model/VariablePointerFactory.java b/src/main/java/org/apache/commons/jxpath/ri/model/VariablePointerFactory.java index 6faf4c7..d6d3c2d 100644 --- a/src/main/java/org/apache/commons/jxpath/ri/model/VariablePointerFactory.java +++ b/src/main/java/org/apache/commons/jxpath/ri/model/VariablePointerFactory.java @@ -45,7 +45,7 @@ public class VariablePointerFactory implements NodePointerFactory { } /** - * Get the original (unwrapped) context. + * Gets the original (unwrapped) context. * * @return JXPathContext. */ diff --git a/src/main/java/org/apache/commons/jxpath/ri/model/beans/BeanPropertyPointer.java b/src/main/java/org/apache/commons/jxpath/ri/model/beans/BeanPropertyPointer.java index b556d21..17fb7a3 100644 --- a/src/main/java/org/apache/commons/jxpath/ri/model/beans/BeanPropertyPointer.java +++ b/src/main/java/org/apache/commons/jxpath/ri/model/beans/BeanPropertyPointer.java @@ -69,7 +69,7 @@ public class BeanPropertyPointer extends PropertyPointer { } /** - * Get the names of all properties, sorted alphabetically + * Gets the names of all properties, sorted alphabetically * @return String[] */ @Override @@ -110,7 +110,7 @@ public class BeanPropertyPointer extends PropertyPointer { } /** - * Get the value of the currently selected property. + * Gets the value of the currently selected property. * @return Object value */ @Override @@ -271,7 +271,7 @@ public class BeanPropertyPointer extends PropertyPointer { } /** - * Get the name of the currently selected property. + * Gets the name of the currently selected property. * @return String property name */ @Override @@ -312,7 +312,7 @@ public class BeanPropertyPointer extends PropertyPointer { } /** - * Get all PropertyDescriptors. + * Gets all PropertyDescriptors. * @return PropertyDescriptor[] */ protected synchronized PropertyDescriptor[] getPropertyDescriptors() { diff --git a/src/main/java/org/apache/commons/jxpath/ri/model/beans/NullElementPointer.java b/src/main/java/org/apache/commons/jxpath/ri/model/beans/NullElementPointer.java index bf7fbdb..c5e2cdf 100644 --- a/src/main/java/org/apache/commons/jxpath/ri/model/beans/NullElementPointer.java +++ b/src/main/java/org/apache/commons/jxpath/ri/model/beans/NullElementPointer.java @@ -68,7 +68,7 @@ public class NullElementPointer extends CollectionPointer { } /** - * Get the property pointer for this. + * Gets the property pointer for this. * @return PropertyPointer */ public PropertyPointer getPropertyPointer() { diff --git a/src/main/java/org/apache/commons/jxpath/ri/model/beans/PropertyIterator.java b/src/main/java/org/apache/commons/jxpath/ri/model/beans/PropertyIterator.java index 4b0184b..12071b6 100644 --- a/src/main/java/org/apache/commons/jxpath/ri/model/beans/PropertyIterator.java +++ b/src/main/java/org/apache/commons/jxpath/ri/model/beans/PropertyIterator.java @@ -81,7 +81,7 @@ public class PropertyIterator implements NodeIterator { } /** - * Get the property pointer. + * Gets the property pointer. * @return NodePointer */ protected NodePointer getPropertyPointer() { diff --git a/src/main/java/org/apache/commons/jxpath/ri/model/beans/PropertyOwnerPointer.java b/src/main/java/org/apache/commons/jxpath/ri/model/beans/PropertyOwnerPointer.java index 1562614..e16c8ad 100644 --- a/src/main/java/org/apache/commons/jxpath/ri/model/beans/PropertyOwnerPointer.java +++ b/src/main/java/org/apache/commons/jxpath/ri/model/beans/PropertyOwnerPointer.java @@ -168,7 +168,7 @@ public abstract class PropertyOwnerPointer extends NodePointer { } /** - * Get a PropertyPointer for this PropertyOwnerPointer. + * Gets a PropertyPointer for this PropertyOwnerPointer. * @return PropertyPointer */ public abstract PropertyPointer getPropertyPointer(); diff --git a/src/main/java/org/apache/commons/jxpath/ri/model/beans/PropertyPointer.java b/src/main/java/org/apache/commons/jxpath/ri/model/beans/PropertyPointer.java index 01e298a..5ecf81c 100644 --- a/src/main/java/org/apache/commons/jxpath/ri/model/beans/PropertyPointer.java +++ b/src/main/java/org/apache/commons/jxpath/ri/model/beans/PropertyPointer.java @@ -49,7 +49,7 @@ public abstract class PropertyPointer extends NodePointer { } /** - * Get the property index. + * Gets the property index. * @return int index */ public int getPropertyIndex() { @@ -68,7 +68,7 @@ public abstract class PropertyPointer extends NodePointer { } /** - * Get the parent bean. + * Gets the parent bean. * @return Object */ public Object getBean() { @@ -84,7 +84,7 @@ public abstract class PropertyPointer extends NodePointer { } /** - * Get the property name. + * Gets the property name. * @return String property name. */ public abstract String getPropertyName(); @@ -102,7 +102,7 @@ public abstract class PropertyPointer extends NodePointer { public abstract int getPropertyCount(); /** - * Get the names of the included properties. + * Gets the names of the included properties. * @return String[] */ public abstract String[] getPropertyNames(); diff --git a/src/main/java/org/apache/commons/jxpath/ri/model/dom/DOMAttributeIterator.java b/src/main/java/org/apache/commons/jxpath/ri/model/dom/DOMAttributeIterator.java index 72c7bef..ae3ad3a 100644 --- a/src/main/java/org/apache/commons/jxpath/ri/model/dom/DOMAttributeIterator.java +++ b/src/main/java/org/apache/commons/jxpath/ri/model/dom/DOMAttributeIterator.java @@ -102,7 +102,7 @@ public class DOMAttributeIterator implements NodeIterator { } /** - * Get the named attribute. + * Gets the named attribute. * @param element to search * @param name to match * @return Attr found diff --git a/src/main/java/org/apache/commons/jxpath/ri/model/dom/DOMNodePointer.java b/src/main/java/org/apache/commons/jxpath/ri/model/dom/DOMNodePointer.java index d3fdfaf..6efad9c 100644 --- a/src/main/java/org/apache/commons/jxpath/ri/model/dom/DOMNodePointer.java +++ b/src/main/java/org/apache/commons/jxpath/ri/model/dom/DOMNodePointer.java @@ -368,7 +368,7 @@ public class DOMNodePointer extends NodePointer { } /** - * Get the language attribute for this node. + * Gets the language attribute for this node. * @return String language name */ protected String getLanguage() { @@ -570,7 +570,7 @@ public class DOMNodePointer extends NodePointer { } /** - * Get relative position of this among like-named siblings. + * Gets relative position of this among like-named siblings. * @return 1..n */ private int getRelativePositionByQName() { @@ -594,7 +594,7 @@ public class DOMNodePointer extends NodePointer { } /** - * Get relative position of this among all siblings. + * Gets relative position of this among all siblings. * @return 1..n */ private int getRelativePositionOfElement() { @@ -610,7 +610,7 @@ public class DOMNodePointer extends NodePointer { } /** - * Get the relative position of this among sibling text nodes. + * Gets the relative position of this among sibling text nodes. * @return 1..n */ private int getRelativePositionOfTextNode() { @@ -627,7 +627,7 @@ public class DOMNodePointer extends NodePointer { } /** - * Get the relative position of this among same-target processing instruction siblings. + * Gets the relative position of this among same-target processing instruction siblings. * @return 1..n */ private int getRelativePositionOfPI() { @@ -655,7 +655,7 @@ public class DOMNodePointer extends NodePointer { } /** - * Get any prefix from the specified node. + * Gets any prefix from the specified node. * @param node the node to check * @return String xml prefix */ @@ -671,7 +671,7 @@ public class DOMNodePointer extends NodePointer { } /** - * Get the local name of the specified node. + * Gets the local name of the specified node. * @param node node to check * @return String local name */ @@ -687,7 +687,7 @@ public class DOMNodePointer extends NodePointer { } /** - * Get the ns uri of the specified node. + * Gets the ns uri of the specified node. * @param node Node to check * @return String ns uri */ @@ -728,7 +728,7 @@ public class DOMNodePointer extends NodePointer { } /** - * Get the string value of the specified node. + * Gets the string value of the specified node. * @param node Node to check * @return String */ diff --git a/src/main/java/org/apache/commons/jxpath/ri/model/jdom/JDOMNodePointer.java b/src/main/java/org/apache/commons/jxpath/ri/model/jdom/JDOMNodePointer.java index f3b5324..e3de51e 100644 --- a/src/main/java/org/apache/commons/jxpath/ri/model/jdom/JDOMNodePointer.java +++ b/src/main/java/org/apache/commons/jxpath/ri/model/jdom/JDOMNodePointer.java @@ -120,7 +120,7 @@ public class JDOMNodePointer extends NodePointer { } /** - * Get the ns uri of the specified node. + * Gets the ns uri of the specified node. * @param node Node to check * @return String */ @@ -452,7 +452,7 @@ public class JDOMNodePointer extends NodePointer { } /** - * Get the prefix from a given node. + * Gets the prefix from a given node. * @param node to check * @return String */ @@ -469,7 +469,7 @@ public class JDOMNodePointer extends NodePointer { } /** - * Get the local name of the specified node. + * Gets the local name of the specified node. * @param node to check * @return String local name */ @@ -498,7 +498,7 @@ public class JDOMNodePointer extends NodePointer { } /** - * Get the language of this element. + * Gets the language of this element. * @return String language */ protected String getLanguage() { @@ -528,7 +528,7 @@ public class JDOMNodePointer extends NodePointer { } /** - * Get the parent of the specified node. + * Gets the parent of the specified node. * @param node to check * @return parent Element */ @@ -695,7 +695,7 @@ public class JDOMNodePointer extends NodePointer { } /** - * Get relative position of this among like-named siblings. + * Gets relative position of this among like-named siblings. * @return 1..n */ private int getRelativePositionByQName() { @@ -731,7 +731,7 @@ public class JDOMNodePointer extends NodePointer { } /** - * Get relative position of this among all siblings. + * Gets relative position of this among all siblings. * @return 1..n */ private int getRelativePositionOfElement() { @@ -759,7 +759,7 @@ public class JDOMNodePointer extends NodePointer { } /** - * Get the relative position of this among sibling text nodes. + * Gets the relative position of this among sibling text nodes. * @return 1..n */ private int getRelativePositionOfTextNode() { @@ -787,7 +787,7 @@ public class JDOMNodePointer extends NodePointer { } /** - * Get the relative position of this among same-target processing instruction siblings. + * Gets the relative position of this among same-target processing instruction siblings. * @return 1..n */ private int getRelativePositionOfPI() { diff --git a/src/main/java/org/apache/commons/jxpath/servlet/HttpSessionAndServletContext.java b/src/main/java/org/apache/commons/jxpath/servlet/HttpSessionAndServletContext.java index 11bec18..a2e3527 100644 --- a/src/main/java/org/apache/commons/jxpath/servlet/HttpSessionAndServletContext.java +++ b/src/main/java/org/apache/commons/jxpath/servlet/HttpSessionAndServletContext.java @@ -39,7 +39,7 @@ public class HttpSessionAndServletContext { } /** - * Get the session. + * Gets the session. * @return HttpSession */ public HttpSession getSession() { @@ -47,7 +47,7 @@ public class HttpSessionAndServletContext { } /** - * Get the ServletContext. + * Gets the ServletContext. * @return ServletContext */ public ServletContext getServletContext() { diff --git a/src/main/java/org/apache/commons/jxpath/servlet/PageScopeContext.java b/src/main/java/org/apache/commons/jxpath/servlet/PageScopeContext.java index 7485230..c010853 100644 --- a/src/main/java/org/apache/commons/jxpath/servlet/PageScopeContext.java +++ b/src/main/java/org/apache/commons/jxpath/servlet/PageScopeContext.java @@ -46,7 +46,7 @@ public class PageScopeContext { } /** - * Get the value of the specified attribute. + * Gets the value of the specified attribute. * @param attribute name * @return Object */ diff --git a/src/main/java/org/apache/commons/jxpath/servlet/ServletRequestAndContext.java b/src/main/java/org/apache/commons/jxpath/servlet/ServletRequestAndContext.java index a0c225b..9c7edb2 100644 --- a/src/main/java/org/apache/commons/jxpath/servlet/ServletRequestAndContext.java +++ b/src/main/java/org/apache/commons/jxpath/servlet/ServletRequestAndContext.java @@ -47,7 +47,7 @@ public class ServletRequestAndContext extends HttpSessionAndServletContext { } /** - * Get the request. + * Gets the request. * * @return ServletRequest */ diff --git a/src/main/java/org/apache/commons/jxpath/util/BasicTypeConverter.java b/src/main/java/org/apache/commons/jxpath/util/BasicTypeConverter.java index 91a45fa..f9acdc7 100644 --- a/src/main/java/org/apache/commons/jxpath/util/BasicTypeConverter.java +++ b/src/main/java/org/apache/commons/jxpath/util/BasicTypeConverter.java @@ -448,7 +448,7 @@ public class BasicTypeConverter implements TypeConverter { } /** - * Get an unmodifiable version of a collection. + * Gets an unmodifiable version of a collection. * @param collection to wrap * @return Collection */ diff --git a/src/main/java/org/apache/commons/jxpath/util/KeyManagerUtils.java b/src/main/java/org/apache/commons/jxpath/util/KeyManagerUtils.java index 76c2aca..c1f2942 100644 --- a/src/main/java/org/apache/commons/jxpath/util/KeyManagerUtils.java +++ b/src/main/java/org/apache/commons/jxpath/util/KeyManagerUtils.java @@ -61,7 +61,7 @@ public class KeyManagerUtils { } /** - * Get an ExtendedKeyManager from the specified KeyManager. + * Gets an ExtendedKeyManager from the specified KeyManager. * @param keyManager to adapt, if necessary * @return <code>keyManager</code> if it implements ExtendedKeyManager * or a basic single-result ExtendedKeyManager that delegates to