From 9748b4ececd68a3c4313074841d76c574dbd3d61 Mon Sep 17 00:00:00 2001 From: sundar Date: Fri, 18 Feb 2011 12:07:46 +0530 Subject: [PATCH] 7018459: javax.script code comments have issues with HTML4 validation and Accessibility compliance Reviewed-by: jjh --- .../javax/script/ScriptEngineFactory.java | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/src/share/classes/javax/script/ScriptEngineFactory.java b/src/share/classes/javax/script/ScriptEngineFactory.java index 46b56ef66..f39f33de4 100644 --- a/src/share/classes/javax/script/ScriptEngineFactory.java +++ b/src/share/classes/javax/script/ScriptEngineFactory.java @@ -115,20 +115,19 @@ public interface ScriptEngineFactory { * with respect to concurrent execution of scripts and maintenance of state is also defined. * These values for the THREADING key are:

* *

* Implementations may define implementation-specific keys. @@ -145,7 +144,8 @@ public interface ScriptEngineFactory { * of the supported scripting language. For instance, an implementaton for a Javascript * engine might be; *

- *

+     * 
+     * 
      * public String getMethodCallSyntax(String obj,
      *                                   String m, String... args) {
      *      String ret = obj;
@@ -159,7 +159,8 @@ public interface ScriptEngineFactory {
      *      ret += ")";
      *      return ret;
      * }
-     *
+ *
+ *
*

* * @param obj The name representing the object whose method is to be invoked. The -- GitLab