You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/changes/changes.xml
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -139,6 +139,10 @@ The <action> type attribute can be add,update,fix,remove.
139
139
<actiondev="ggregory"type="fix"due-to="Gary Gregory">org.apache.commons.jxpath.ri.JXPathContextReferenceImpl.iteratePointers(String, Expression) now uses generics.</action>
140
140
<actiondev="ggregory"type="fix"due-to="Gary Gregory">org.apache.commons.jxpath.CompiledExpression.iteratePointers(JXPathContext) now uses generics.</action>
141
141
<actiondev="ggregory"type="fix"due-to="Gary Gregory">org.apache.commons.jxpath.JXPathCompiledExpression.iteratePointers(JXPathContext) now uses generics.</action>
142
+
<actiondev="ggregory"type="fix"due-to="Gary Gregory">org.apache.commons.jxpath.util.ClassLoaderUtil.getClass(ClassLoader, String) now uses generics.</action>
143
+
<actiondev="ggregory"type="fix"due-to="Gary Gregory">org.apache.commons.jxpath.util.ClassLoaderUtil.getClass(ClassLoader, String, boolean) now uses generics.</action>
144
+
<actiondev="ggregory"type="fix"due-to="Gary Gregory">org.apache.commons.jxpath.util.ClassLoaderUtil.getClass(String) now uses generics.</action>
145
+
<actiondev="ggregory"type="fix"due-to="Gary Gregory">org.apache.commons.jxpath.util.ClassLoaderUtil.getClass(String, boolean) now uses generics.</action>
142
146
<!-- ADD -->
143
147
<actionissue="JXPATH-123"dev="mbenson"type="add">
144
148
XPath function "ends-with" is not implemented (although "starts-with" is).
@@ -76,19 +77,21 @@ public static Class getClass(final ClassLoader classLoader, final String classNa
76
77
* Returns the class represented by {@code className} using the {@code classLoader}. This implementation supports names like "{@code java.lang.String[]}" as
77
78
* well as "{@code [Ljava.lang.String;}".
78
79
*
80
+
* @param <T> The expected class type.
79
81
* @param classLoader the class loader to use to load the class
80
82
* @param className the class name
81
83
* @param initialize whether the class must be initialized
82
84
* @return the class represented by {@code className} using the {@code classLoader}
83
85
* @throws ClassNotFoundException if the class is not found
@@ -97,24 +100,26 @@ public static Class getClass(final ClassLoader classLoader, final String classNa
97
100
* Returns the (initialized) class represented by {@code className} using the current thread's context class loader. This implementation supports names like
98
101
* "{@code java.lang.String[]}" as well as "{@code [Ljava.lang.String;}".
99
102
*
103
+
* @param <T> The expected class type.
100
104
* @param className the class name
101
105
* @return the class represented by {@code className} using the current thread's context class loader
102
106
* @throws ClassNotFoundException if the class is not found
0 commit comments