1 /*
   2  * Copyright (c) 2015, 2018, 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     requires jdk.unsupported;
  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;
  60     exports javafx.stage;
  61 
  62     exports com.sun.glass.ui to
  63         javafx.media,
  64         javafx.web;
  65     exports com.sun.glass.utils to
  66         javafx.media,
  67         javafx.web;
  68     exports com.sun.javafx.application to
  69         java.base,
  70         javafx.controls,
  71         javafx.swing,
  72         javafx.web;
  73     exports com.sun.javafx.css to
  74         javafx.controls;
  75     exports com.sun.javafx.css.parser to
  76         jdk.packager;
  77     exports com.sun.javafx.cursor to
  78         javafx.swing;
  79     exports com.sun.javafx.embed to
  80         javafx.swing;
  81     exports com.sun.javafx.font to
  82         javafx.web;
  83     exports com.sun.javafx.geom to
  84         javafx.controls,
  85         javafx.media,
  86         javafx.swing,
  87         javafx.web;
  88     exports com.sun.javafx.geom.transform to
  89         javafx.controls,
  90         javafx.media,
  91         javafx.swing,
  92         javafx.web;
  93     exports com.sun.javafx.iio to
  94         javafx.web;
  95     exports com.sun.javafx.jmx to
  96         javafx.media,
  97         javafx.swing,
  98         javafx.web;
  99     exports com.sun.javafx.menu to
 100         javafx.controls;
 101     exports com.sun.javafx.scene to
 102         javafx.controls,
 103         javafx.media,
 104         javafx.swing,
 105         javafx.web;
 106     exports com.sun.javafx.scene.input to
 107         javafx.controls,
 108         javafx.swing,
 109         javafx.web;
 110     exports com.sun.javafx.scene.layout to
 111         javafx.controls,
 112         javafx.web;
 113     exports com.sun.javafx.scene.text to
 114         javafx.controls,
 115         javafx.web;
 116     exports com.sun.javafx.scene.traversal to
 117         javafx.controls,
 118         javafx.web;
 119     exports com.sun.javafx.sg.prism to
 120         javafx.media,
 121         javafx.swing,
 122         javafx.web;
 123     exports com.sun.javafx.stage to
 124         javafx.controls,
 125         javafx.swing;
 126     exports com.sun.javafx.text to
 127         javafx.web;
 128     exports com.sun.javafx.tk to
 129         javafx.controls,
 130         javafx.media,
 131         javafx.swing,
 132         javafx.web;
 133     exports com.sun.javafx.util to
 134         javafx.controls,
 135         javafx.fxml,
 136         javafx.media,
 137         javafx.swing,
 138         javafx.web;
 139     exports com.sun.prism to
 140         javafx.media,
 141         javafx.web;
 142     exports com.sun.prism.image to
 143         javafx.web;
 144     exports com.sun.prism.paint to
 145         javafx.web;
 146     exports com.sun.scenario.effect to
 147         javafx.web;
 148     exports com.sun.scenario.effect.impl to
 149         javafx.web;
 150     exports com.sun.scenario.effect.impl.prism to
 151         javafx.web;
 152 }