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-jexl.git
commit 5017507c83c2634bdc8b9f6dcfe4161e6387cf7b Author: Gary Gregory <[email protected]> AuthorDate: Sat Nov 8 06:26:02 2025 -0500 Javadoc --- .../org/apache/commons/jexl3/package-info.java | 32 ++++++++++++---------- 1 file changed, 18 insertions(+), 14 deletions(-) diff --git a/src/main/java/org/apache/commons/jexl3/package-info.java b/src/main/java/org/apache/commons/jexl3/package-info.java index d8e2deb1..61453659 100644 --- a/src/main/java/org/apache/commons/jexl3/package-info.java +++ b/src/main/java/org/apache/commons/jexl3/package-info.java @@ -101,24 +101,28 @@ * <pre> * // test outer class * public static class Froboz { - * int value; - * public Froboz(int v) { value = v; } - * public void setValue(int v) { value = v; } - * public int getValue() { return value; } + * int value; + * public Froboz(int v) { value = v; } + * public void setValue(int v) { value = v; } + * public int getValue() { return value; } * } + * * // test inner class * public static class Quux { - * String str; - * Froboz froboz; - * public Quux(String str, int fro) { - * this.str = str; - * froboz = new Froboz(fro); - * } - * public Froboz getFroboz() { return froboz; } - * public void setFroboz(Froboz froboz) { this.froboz = froboz; } - * public String getStr() { return str; } - * public void setStr(String str) { this.str = str; } + * String str; + * Froboz froboz; + * + * public Quux(String str, int fro) { + * this.str = str; + * froboz = new Froboz(fro); + * } + * + * public Froboz getFroboz() { return froboz; } + * public void setFroboz(Froboz froboz) { this.froboz = froboz; } + * public String getStr() { return str; } + * public void setStr(String str) { this.str = str; } * } + * * // test API * JexlEngine jexl = new JexlBuilder().create(); * Quux quux = jexl.newInstance(Quux.class, "xuuq", 100);
