/hg/icedtea6: Added patch with JavaDoc fixes for ScriptEngineMan...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Fri Feb 24 03:52:59 PST 2012
changeset 6b69d846d8cb in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=6b69d846d8cb
author: ptisnovs
date: Fri Feb 24 13:52:49 2012 +0100
Added patch with JavaDoc fixes for ScriptEngineManager class & minor
Makefile.am correction.
diffstat:
ChangeLog | 18 ++++++++++++------
Makefile.am | 3 ++-
patches/ScriptEngineManager-doc.patch | 28 ++++++++++++++++++++++++++++
3 files changed, 42 insertions(+), 7 deletions(-)
diffs (74 lines):
diff -r 01123e3102cc -r 6b69d846d8cb ChangeLog
--- a/ChangeLog Wed Feb 22 15:36:29 2012 +0000
+++ b/ChangeLog Fri Feb 24 13:52:49 2012 +0100
@@ -1,12 +1,18 @@
+2012-02-24 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * patches/ScriptEngineManager-doc.patch:
+ Added patch with JavaDoc fixes for ScriptEngineManager class.
+ * Makefile.am: updated
+
2012-02-22 Andrew Haley <aph at redhat.com>
* arm_port/hotspot/src/cpu/zero/vm/thumb2.cpp
- (handle_special_method, jstack_to_vfp, vfp_to_jstack): New
- functions.
- (Thumb2_codegen): Call handle_special_method.
- (t_vop_ops): Add VSQRT.
- (T_VMOVD_VFP_TOVFP): New macro.
- (vmov_reg_d_VFP_to_VFP): New function.
+ (handle_special_method, jstack_to_vfp, vfp_to_jstack): New
+ functions.
+ (Thumb2_codegen): Call handle_special_method.
+ (t_vop_ops): Add VSQRT.
+ (T_VMOVD_VFP_TOVFP): New macro.
+ (vmov_reg_d_VFP_to_VFP): New function.
2012-02-20 Andrew Haley <aph at redhat.com>
diff -r 01123e3102cc -r 6b69d846d8cb Makefile.am
--- a/Makefile.am Wed Feb 22 15:36:29 2012 +0000
+++ b/Makefile.am Fri Feb 24 13:52:49 2012 +0100
@@ -420,7 +420,8 @@
patches/openjdk/6764553-IdResolver_is_not_thread_safe.patch \
patches/openjdk/6761072-new_krb5_tests_fail_on_multiple_platforms.patch \
patches/openjdk/7140882-dont-return-booleans-from-methods-returning-pointers.patch \
- patches/openjdk/remove-mimpure-option-to-gcc.patch
+ patches/openjdk/remove-mimpure-option-to-gcc.patch \
+ patches/ScriptEngineManager-doc.patch
if WITH_RHINO
ICEDTEA_PATCHES += \
diff -r 01123e3102cc -r 6b69d846d8cb patches/ScriptEngineManager-doc.patch
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/patches/ScriptEngineManager-doc.patch Fri Feb 24 13:52:49 2012 +0100
@@ -0,0 +1,29 @@
+--- openjdk.orig/jdk/src/share/classes/javax/script/ScriptEngineManager.java 2011-11-14 23:11:55.000000000 +0100
++++ openjdk/jdk/src/share/classes/javax/script/ScriptEngineManager.java 2012-02-24 12:01:38.745796422 +0100
+@@ -39,7 +39,7 @@
+ * collection of key/value pairs storing state shared by all engines created
+ * by the Manager. This class uses the <a href="../../../technotes/guides/jar/jar.html#Service%20Provider">service provider</a> mechanism to enumerate all the
+ * implementations of <code>ScriptEngineFactory</code>. <br><br>
+- * The <code>ScriptEngineManager</code> provides a method to return an array of all these factories
++ * The <code>ScriptEngineManager</code> provides a method to return a list of all these factories
+ * as well as utility methods which look up factories on the basis of language name, file extension
+ * and mime type.
+ * <p>
+@@ -202,7 +202,7 @@
+ * The algorithm first searches for a <code>ScriptEngineFactory</code> that has been
+ * registered as a handler for the specified name using the <code>registerEngineName</code>
+ * method.
+- * <br><br> If one is not found, it searches the array of <code>ScriptEngineFactory</code> instances
++ * <br><br> If one is not found, it searches the set of <code>ScriptEngineFactory</code> instances
+ * stored by the constructor for one with the specified name. If a <code>ScriptEngineFactory</code>
+ * is found by either method, it is used to create instance of <code>ScriptEngine</code>.
+ * @param shortName The short name of the <code>ScriptEngine</code> implementation.
+@@ -351,7 +351,7 @@
+ }
+
+ /**
+- * Returns an array whose elements are instances of all the <code>ScriptEngineFactory</code> classes
++ * Returns a list whose elements are instances of all the <code>ScriptEngineFactory</code> classes
+ * found by the discovery mechanism.
+ * @return List of all discovered <code>ScriptEngineFactory</code>s.
+ */
More information about the distro-pkg-dev
mailing list