< prev index next >

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

Print this page
rev 10669 : 8187149: Remove HostServices::getWebContext
Reviewed-by:


  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  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 the core scenegraph APIs for the JavaFX UI toolkit
  28  * (such as layout containers, application lifecycle, shapes,
  29  * transformations, canvas, input, painting, image handling, and effects),
  30  * as well as APIs for animation, css, concurrency, geometry, printing, and
  31  * windowing.
  32  *
  33  * @moduleGraph
  34  * @since 9
  35  */
  36 module javafx.graphics {
  37     requires java.desktop;
  38     requires java.xml;
  39     requires jdk.jsobject;
  40 
  41     requires transitive javafx.base;
  42 
  43     exports javafx.animation;
  44     exports javafx.application;
  45     exports javafx.concurrent;
  46     exports javafx.css;
  47     exports javafx.css.converter;
  48     exports javafx.geometry;
  49     exports javafx.print;
  50     exports javafx.scene;
  51     exports javafx.scene.canvas;
  52     exports javafx.scene.effect;
  53     exports javafx.scene.image;
  54     exports javafx.scene.input;
  55     exports javafx.scene.layout;
  56     exports javafx.scene.paint;
  57     exports javafx.scene.shape;
  58     exports javafx.scene.text;
  59     exports javafx.scene.transform;




  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  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 the core scenegraph APIs for the JavaFX UI toolkit
  28  * (such as layout containers, application lifecycle, shapes,
  29  * transformations, canvas, input, painting, image handling, and effects),
  30  * as well as APIs for animation, css, concurrency, geometry, printing, and
  31  * windowing.
  32  *
  33  * @moduleGraph
  34  * @since 9
  35  */
  36 module javafx.graphics {
  37     requires java.desktop;
  38     requires java.xml;

  39 
  40     requires transitive javafx.base;
  41 
  42     exports javafx.animation;
  43     exports javafx.application;
  44     exports javafx.concurrent;
  45     exports javafx.css;
  46     exports javafx.css.converter;
  47     exports javafx.geometry;
  48     exports javafx.print;
  49     exports javafx.scene;
  50     exports javafx.scene.canvas;
  51     exports javafx.scene.effect;
  52     exports javafx.scene.image;
  53     exports javafx.scene.input;
  54     exports javafx.scene.layout;
  55     exports javafx.scene.paint;
  56     exports javafx.scene.shape;
  57     exports javafx.scene.text;
  58     exports javafx.scene.transform;


< prev index next >