nashorn/src/jdk.scripting.nashorn/share/classes/module-info.java
author sundar
Wed, 04 Jan 2017 18:47:35 +0530
changeset 43017 88c78d6617f4
parent 42380 180839e7d68a
child 43742 abd8bc4c4c9d
permissions -rw-r--r--
8164391: Provide a javadoc description for jdk.scripting.nashorn Reviewed-by: attila, jlaskey
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
36517
41a1c20eb619 8142968: Module System implementation
alanb
parents:
diff changeset
     1
/*
41a1c20eb619 8142968: Module System implementation
alanb
parents:
diff changeset
     2
 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
41a1c20eb619 8142968: Module System implementation
alanb
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
41a1c20eb619 8142968: Module System implementation
alanb
parents:
diff changeset
     4
 *
41a1c20eb619 8142968: Module System implementation
alanb
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
41a1c20eb619 8142968: Module System implementation
alanb
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
41a1c20eb619 8142968: Module System implementation
alanb
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
41a1c20eb619 8142968: Module System implementation
alanb
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
41a1c20eb619 8142968: Module System implementation
alanb
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
41a1c20eb619 8142968: Module System implementation
alanb
parents:
diff changeset
    10
 *
41a1c20eb619 8142968: Module System implementation
alanb
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
41a1c20eb619 8142968: Module System implementation
alanb
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
41a1c20eb619 8142968: Module System implementation
alanb
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
41a1c20eb619 8142968: Module System implementation
alanb
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
41a1c20eb619 8142968: Module System implementation
alanb
parents:
diff changeset
    15
 * accompanied this code).
41a1c20eb619 8142968: Module System implementation
alanb
parents:
diff changeset
    16
 *
41a1c20eb619 8142968: Module System implementation
alanb
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
41a1c20eb619 8142968: Module System implementation
alanb
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
41a1c20eb619 8142968: Module System implementation
alanb
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
41a1c20eb619 8142968: Module System implementation
alanb
parents:
diff changeset
    20
 *
41a1c20eb619 8142968: Module System implementation
alanb
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
41a1c20eb619 8142968: Module System implementation
alanb
parents:
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
41a1c20eb619 8142968: Module System implementation
alanb
parents:
diff changeset
    23
 * questions.
41a1c20eb619 8142968: Module System implementation
alanb
parents:
diff changeset
    24
 */
41a1c20eb619 8142968: Module System implementation
alanb
parents:
diff changeset
    25
42380
180839e7d68a 8169069: Module system implementation refresh (11/2016)
alanb
parents: 37833
diff changeset
    26
/**
43017
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    27
<p>
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    28
Nashorn is a runtime environment for programs written in ECMAScript 5.1.
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    29
</p>
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    30
<h1>Usage</h1>
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    31
The recommended way to use Nashorn is through the <a href="http://jcp.org/en/jsr/detail?id=223" target="_top">JSR-223
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    32
"Scripting for the Java Platform"</a> APIs found in the {@link javax.script} package. Usually, you'll obtain a
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    33
{@link javax.script.ScriptEngine} instance for Nashorn using:
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    34
<pre>
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    35
import javax.script.*;
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    36
...
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    37
ScriptEngine nashornEngine = new ScriptEngineManager().getEngineByName("nashorn");
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    38
</pre>
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    39
and then use it just as you would any other JSR-223 script engine. See
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    40
<a href="jdk/nashorn/api/scripting/package-summary.html">{@code jdk.nashorn.api.scripting}</a> package
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    41
for details.
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    42
<h1>Compatibility</h1>
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    43
Nashorn is 100% compliant with the <a href="http://www.ecma-international.org/publications/standards/Ecma-262.htm"
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    44
target="_top">ECMA-262 Standard, Edition 5.1</a>. It requires a Java Virtual Machine that implements the
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    45
<a href="http://jcp.org/en/jsr/detail?id=292" target="_top">JSR-292 "Supporting Dynamically Typed Languages on the Java
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    46
Platform"</a> specification (often referred to as "invokedynamic"), as well as the already mentioned JSR-223.
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    47
<h1>Interoperability with the Java platform</h1>
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    48
In addition to being a 100% ECMAScript 5.1 runtime, Nashorn provides features for interoperability of the ECMAScript
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    49
programs with the Java platform. In general, any Java object put into the script engine's context will be visible from
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    50
the script. In terms of the standard, such Java objects are not considered "native objects", but rather "host objects",
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    51
as defined in section 4.3.8. This distinction allows certain semantical differences in handling them compared to native
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    52
objects. For most purposes, Java objects behave just as native objects do: you can invoke their methods, get and set
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    53
their properties. In most cases, though, you can't add arbitrary properties to them, nor can you remove existing
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    54
properties.
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    55
<h2>Java collection handling</h2>
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    56
Native Java arrays and {@link java.util.List}s support indexed access to their elements through the property accessors,
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    57
and {@link java.util.Map}s support both property and element access through both dot and square-bracket property
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    58
accessors, with the difference being that dot operator gives precedence to object properties (its fields and properties
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    59
defined as {@code getXxx} and {@code setXxx} methods) while the square bracket operator gives precedence to map
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    60
elements. Native Java arrays expose the {@code length} property.
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    61
<h2>ECMAScript primitive types</h2>
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    62
ECMAScript primitive types for number, string, and boolean are represented with {@link java.lang.Number},
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    63
{@link java.lang.CharSequence}, and {@link java.lang.Boolean} objects. While the most often used number type is
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    64
{@link java.lang.Double} and the most often used string type is {@link java.lang.String}, don't rely on it as various
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    65
internal optimizations cause other subclasses of {@code Number} and internal implementations of {@code CharSequence} to
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    66
be used.
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    67
<h2>Type conversions</h2>
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    68
When a method on a Java object is invoked, the arguments are converted to the formal parameter types of the Java method
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    69
using all allowed ECMAScript conversions. This can be surprising, as in general, conversions from string to number will
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    70
succeed according to Standard's section 9.3 "ToNumber" and so on; string to boolean, number to boolean, Object to
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    71
number, Object to string all work. Note that if the Java method's declared parameter type is {@code java.lang.Object},
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    72
Nashorn objects are passed without any conversion whatsoever; specifically if the JavaScript value being passed is of
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    73
primitive string type, you can only rely on it being a {@code java.lang.CharSequence}, and if the value is a number, you
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    74
can only rely on it being a {@code java.lang.Number}. If the Java method declared parameter type is more specific (e.g.
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    75
{@code java.lang.String} or {@code java.lang.Double}), then Nashorn will of course ensure the required type is passed.
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    76
<h2>SAM types</h2>
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    77
As a special extension when invoking Java methods, ECMAScript function objects can be passed in place of an argument
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    78
whose Java type is so-called "single abstract method" or "SAM" type. While this name usually covers single-method
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    79
interfaces, Nashorn is a bit more versatile, and it recognizes a type as a SAM type if all its abstract methods are
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    80
overloads of the same name, and it is either an interface, or it is an abstract class with
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    81
a no-arg constructor. The type itself must be public, while the constructor and the methods can be either public or
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    82
protected. If there are multiple abstract overloads of the same name, the single function will serve as the shared
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    83
implementation for all of them, <em>and additionally it will also override any non-abstract methods of the same name</em>.
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    84
This is done to be consistent with the fact that ECMAScript does not have the concept of overloaded methods.
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    85
<h2>The {@code Java} object</h2>
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    86
Nashorn exposes a non-standard global object named {@code Java} that is the primary API entry point into Java
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    87
platform-specific functionality. You can use it to create instances of Java classes, convert from Java arrays to native
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    88
arrays and back, and so on.
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    89
<h2>Other non-standard built-in objects</h2>
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    90
In addition to {@code Java}, Nashorn also exposes some other non-standard built-in objects:
88c78d6617f4 8164391: Provide a javadoc description for jdk.scripting.nashorn
sundar
parents: 42380
diff changeset
    91
{@code JSAdapter}, {@code JavaImporter}, {@code Packages}
42380
180839e7d68a 8169069: Module system implementation refresh (11/2016)
alanb
parents: 37833
diff changeset
    92
 */
36517
41a1c20eb619 8142968: Module System implementation
alanb
parents:
diff changeset
    93
module jdk.scripting.nashorn {
41a1c20eb619 8142968: Module System implementation
alanb
parents:
diff changeset
    94
    requires java.logging;
42380
180839e7d68a 8169069: Module system implementation refresh (11/2016)
alanb
parents: 37833
diff changeset
    95
    requires transitive java.scripting;
36517
41a1c20eb619 8142968: Module System implementation
alanb
parents:
diff changeset
    96
    requires jdk.dynalink;
41a1c20eb619 8142968: Module System implementation
alanb
parents:
diff changeset
    97
41a1c20eb619 8142968: Module System implementation
alanb
parents:
diff changeset
    98
    exports jdk.nashorn.api.scripting;
41a1c20eb619 8142968: Module System implementation
alanb
parents:
diff changeset
    99
    exports jdk.nashorn.api.tree;
41a1c20eb619 8142968: Module System implementation
alanb
parents:
diff changeset
   100
41a1c20eb619 8142968: Module System implementation
alanb
parents:
diff changeset
   101
    exports jdk.nashorn.internal.runtime to
41a1c20eb619 8142968: Module System implementation
alanb
parents:
diff changeset
   102
        jdk.scripting.nashorn.shell;
41a1c20eb619 8142968: Module System implementation
alanb
parents:
diff changeset
   103
    exports jdk.nashorn.internal.objects to
41a1c20eb619 8142968: Module System implementation
alanb
parents:
diff changeset
   104
        jdk.scripting.nashorn.shell;
41a1c20eb619 8142968: Module System implementation
alanb
parents:
diff changeset
   105
    exports jdk.nashorn.tools to
41a1c20eb619 8142968: Module System implementation
alanb
parents:
diff changeset
   106
        jdk.scripting.nashorn.shell;
41a1c20eb619 8142968: Module System implementation
alanb
parents:
diff changeset
   107
37833
ae7b3314b209 8150731: Nashorn JSObject linker should be exposed as a service provider
sundar
parents: 36517
diff changeset
   108
    provides javax.script.ScriptEngineFactory
ae7b3314b209 8150731: Nashorn JSObject linker should be exposed as a service provider
sundar
parents: 36517
diff changeset
   109
        with jdk.nashorn.api.scripting.NashornScriptEngineFactory;
ae7b3314b209 8150731: Nashorn JSObject linker should be exposed as a service provider
sundar
parents: 36517
diff changeset
   110
ae7b3314b209 8150731: Nashorn JSObject linker should be exposed as a service provider
sundar
parents: 36517
diff changeset
   111
    provides jdk.dynalink.linker.GuardingDynamicLinkerExporter
ae7b3314b209 8150731: Nashorn JSObject linker should be exposed as a service provider
sundar
parents: 36517
diff changeset
   112
        with jdk.nashorn.api.linker.NashornLinkerExporter;
36517
41a1c20eb619 8142968: Module System implementation
alanb
parents:
diff changeset
   113
}