1 /*
   2  * Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  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;
  59     exports javafx.stage;
  60 
  61     exports com.sun.glass.ui to
  62         javafx.media,
  63         javafx.web;
  64     exports com.sun.glass.utils to
  65         javafx.media,
  66         javafx.web;
  67     exports com.sun.javafx.application to
  68         java.base,
  69         javafx.controls,
  70         javafx.swing,
  71         javafx.web;
  72     exports com.sun.javafx.css to
  73         javafx.controls;
  74     exports com.sun.javafx.css.parser to
  75         jdk.packager;
  76     exports com.sun.javafx.cursor to
  77         javafx.swing;
  78     exports com.sun.javafx.embed to
  79         javafx.swing;
  80     exports com.sun.javafx.font to
  81         javafx.web;
  82     exports com.sun.javafx.geom to
  83         javafx.controls,
  84         javafx.media,
  85         javafx.swing,
  86         javafx.web;
  87     exports com.sun.javafx.geom.transform to
  88         javafx.controls,
  89         javafx.media,
  90         javafx.swing,
  91         javafx.web;
  92     exports com.sun.javafx.iio to
  93         javafx.web;
  94     exports com.sun.javafx.jmx to
  95         javafx.media,
  96         javafx.swing,
  97         javafx.web;
  98     exports com.sun.javafx.menu to
  99         javafx.controls;
 100     exports com.sun.javafx.scene to
 101         javafx.controls,
 102         javafx.media,
 103         javafx.swing,
 104         javafx.web;
 105     exports com.sun.javafx.scene.input to
 106         javafx.controls,
 107         javafx.swing,
 108         javafx.web;
 109     exports com.sun.javafx.scene.layout to
 110         javafx.controls,
 111         javafx.web;
 112     exports com.sun.javafx.scene.text to
 113         javafx.controls,
 114         javafx.web;
 115     exports com.sun.javafx.scene.traversal to
 116         javafx.controls,
 117         javafx.web;
 118     exports com.sun.javafx.sg.prism to
 119         javafx.media,
 120         javafx.swing,
 121         javafx.web;
 122     exports com.sun.javafx.stage to
 123         javafx.controls,
 124         javafx.swing;
 125     exports com.sun.javafx.text to
 126         javafx.web;
 127     exports com.sun.javafx.tk to
 128         javafx.controls,
 129         javafx.media,
 130         javafx.swing,
 131         javafx.web;
 132     exports com.sun.javafx.util to
 133         javafx.controls,
 134         javafx.fxml,
 135         javafx.media,
 136         javafx.swing,
 137         javafx.web;
 138     exports com.sun.prism to
 139         javafx.media,
 140         javafx.web;
 141     exports com.sun.prism.image to
 142         javafx.web;
 143     exports com.sun.prism.paint to
 144         javafx.web;
 145     exports com.sun.scenario.effect to
 146         javafx.web;
 147     exports com.sun.scenario.effect.impl to
 148         javafx.web;
 149     exports com.sun.scenario.effect.impl.prism to
 150         javafx.web;
 151 }