< prev index next >

modules/javafx.swing/src/main/module-info/module-info.java

Print this page




  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 APIs for the JavaFX / Swing interop support included with the
  28  * JavaFX UI toolkit, including {@link javafx.embed.swing.SwingNode} (for
  29  * embedding Swing inside a JavaFX application) and
  30  * {@link javafx.embed.swing.JFXPanel} (for embedding JavaFX inside a Swing
  31  * application).
  32  *
  33  * @moduleGraph
  34  * @since 9
  35  */
  36 module javafx.swing {
  37     requires java.datatransfer;
  38     requires javafx.base;
  39 
  40     requires transitive java.desktop;

  41     requires transitive javafx.graphics;
  42 
  43     exports javafx.embed.swing;
  44 
  45     exports com.sun.javafx.embed.swing to
  46         javafx.graphics;
  47 }


  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 APIs for the JavaFX / Swing interop support included with the
  28  * JavaFX UI toolkit, including {@link javafx.embed.swing.SwingNode} (for
  29  * embedding Swing inside a JavaFX application) and
  30  * {@link javafx.embed.swing.JFXPanel} (for embedding JavaFX inside a Swing
  31  * application).
  32  *
  33  * @moduleGraph
  34  * @since 9
  35  */
  36 module javafx.swing {
  37     requires java.datatransfer;
  38     requires javafx.base;
  39 
  40     requires transitive java.desktop;
  41     requires static jdk.unsupported.desktop;
  42     requires transitive javafx.graphics;
  43 
  44     exports javafx.embed.swing;
  45 
  46     exports com.sun.javafx.embed.swing to
  47         javafx.graphics;
  48 }
< prev index next >