< prev index next >

nashorn/src/jdk.dynalink/share/classes/module-info.java

Print this page

        

@@ -22,10 +22,11 @@
  * or visit www.oracle.com if you need additional information or have any
  * questions.
  */
 
 /**
+ * Defines the API for dynamic linking of high-level operations on objects.
  * <p>
  * Dynalink is a library for dynamic linking of high-level operations on objects.
  * These operations include "read a property",
  * "write a property", "invoke a function" and so on. Dynalink is primarily
  * useful for implementing programming languages where at least some expressions

@@ -215,10 +216,12 @@
  * their {@code DynamicLinker} objects. This means that if an object from
  * language runtime B gets passed to code from language runtime A, the linker
  * from B will get a chance to link the call site in A when it encounters the
  * object from B.
  *
+ * @uses jdk.dynalink.linker.GuardingDynamicLinkerExporter
+ *
  * @moduleGraph
  * @since 9
  */
 module jdk.dynalink {
     requires java.logging;
< prev index next >