< prev index next >

src/jdk.scripting.nashorn.shell/share/classes/module-info.java

Print this page




  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 /**
  27  * Defines Nashorn shell module.
  28  *
  29  * <p>This module includes the command line tool <em>{@index jjs jjs tool}</em>
  30  * to invoke the Nashorn engine.
  31  *
  32  * <dl style="font-family:'DejaVu Sans', Arial, Helvetica, sans serif">
  33  * <dt class="simpleTagLabel">Tool Guides:
  34  * <dd>{@extLink jjs_tool_reference jjs}
  35  * </dl>
  36  *
  37  * @moduleGraph
  38  * @since 9
  39  */

  40 module jdk.scripting.nashorn.shell {
  41     requires static java.compiler;
  42     requires jdk.internal.le;
  43     requires jdk.scripting.nashorn;
  44     requires jdk.internal.ed;
  45     uses jdk.internal.editor.spi.BuildInEditorProvider;
  46 }
  47 


  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 /**
  27  * Defines Nashorn shell module.
  28  *
  29  * <p>This module includes the command line tool <em>{@index jjs jjs tool}</em>
  30  * to invoke the Nashorn engine.
  31  *
  32  * <dl style="font-family:'DejaVu Sans', Arial, Helvetica, sans serif">
  33  * <dt class="simpleTagLabel">Tool Guides:
  34  * <dd>{@extLink jjs_tool_reference jjs}
  35  * </dl>
  36  *
  37  * @moduleGraph
  38  * @since 9
  39  */
  40 @Deprecated(since="11", forRemoval=true)
  41 module jdk.scripting.nashorn.shell {
  42     requires static java.compiler;
  43     requires jdk.internal.le;
  44     requires jdk.scripting.nashorn;
  45     requires jdk.internal.ed;
  46     uses jdk.internal.editor.spi.BuildInEditorProvider;
  47 }
  48 
< prev index next >