Skip to content

Commit

Permalink
Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Dec 14, 2023
1 parent 0b5883d commit 55fa07a
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -843,7 +843,7 @@ protected static class VarCollector {
final int mode;

/**
* Constructor.
* Constructs a new instance.
* @param constaa whether constant array-access is considered equivalent to dot-access
*/
protected VarCollector(final int constaa) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ public void clear() {
*/
public static class Ascending extends IntegerRange {
/**
* Constructor.
* Constructs a new instance.
* @param from lower boundary
* @param to upper boundary
*/
Expand All @@ -213,7 +213,7 @@ public Iterator<Integer> iterator() {
*/
public static class Descending extends IntegerRange {
/**
* Constructor.
* Constructs a new instance.
* @param from upper boundary
* @param to lower boundary
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -754,7 +754,7 @@ protected static class Funcall implements JexlNode.Funcall {
/** The JexlMethod to delegate the call to. */
protected final JexlMethod me;
/**
* Constructor.
* Constructs a new instance.
* @param jme the method
* @param flag the narrow flag
*/
Expand All @@ -781,7 +781,7 @@ protected Object tryInvoke(final InterpreterBase ii, final String name, final Ob
*/
protected static class ArithmeticFuncall extends Funcall {
/**
* Constructor.
* Constructs a new instance.
* @param jme the method
* @param flag the narrow flag
*/
Expand All @@ -800,7 +800,7 @@ protected Object tryInvoke(final InterpreterBase ii, final String name, final Ob
*/
protected static class ContextFuncall extends Funcall {
/**
* Constructor.
* Constructs a new instance.
* @param jme the method
* @param flag the narrow flag
*/
Expand All @@ -819,7 +819,7 @@ protected Object tryInvoke(final InterpreterBase ii, final String name, final Ob
*/
protected static class ContextualCtor extends Funcall {
/**
* Constructor.
* Constructs a new instance.
* @param jme the method
* @param flag the narrow flag
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ public void clear() {
*/
public static class Ascending extends LongRange {
/**
* Constructor.
* Constructs a new instance.
* @param from lower boundary
* @param to upper boundary
*/
Expand All @@ -216,7 +216,7 @@ public Iterator<Long> iterator() {
*/
public static class Descending extends LongRange {
/**
* Constructor.
* Constructs a new instance.
* @param from upper boundary
* @param to lower boundary
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class Operators {
protected final JexlArithmetic.Uberspect operators;

/**
* Constructor.
* Constructs a new instance.
* @param owner the owning interpreter
*/
protected Operators(final InterpreterBase owner) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ static Object handleReference(final Object ref) {
private final List<PropertyResolver> mapStrategy;

/**
* Constructor.
* Constructs a new instance.
* @param jexlUberspect the uberspect to delegate to
*/
public ReferenceUberspect(final JexlUberspect jexlUberspect) {
Expand Down

0 comments on commit 55fa07a

Please sign in to comment.