./src/share/classes/javax/script/ScriptEngineManager.java

Print this page
rev 4336 : Fixed typo in ScriptEngineManager class.

@@ -37,11 +37,11 @@
  * The <code>ScriptEngineManager</code> implements a discovery and instantiation
  * mechanism for <code>ScriptEngine</code> classes and also maintains a
  * 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>
  * The <code>Bindings</code> of key/value pairs, referred to as the "Global Scope"  maintained
  * by the manager is available to all instances of <code>ScriptEngine</code> created

@@ -200,11 +200,11 @@
     /**
      * Looks up and creates a <code>ScriptEngine</code> for a given  name.
      * 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.
      * returned by the <code>getNames</code> method of its <code>ScriptEngineFactory</code>.
      * @return A <code>ScriptEngine</code> created by the factory located in the search.  Returns null

@@ -349,11 +349,11 @@
         }
         return null;
     }
 
     /**
-     * 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.
      */
     public List<ScriptEngineFactory> getEngineFactories() {
         List<ScriptEngineFactory> res = new ArrayList<ScriptEngineFactory>(engineSpis.size());