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.cursor to
  76         javafx.swing;
  77     exports com.sun.javafx.embed to
  78         javafx.swing;
  79     exports com.sun.javafx.font to
  80         javafx.web;
  81     exports com.sun.javafx.geom to
  82         javafx.controls,
  83         javafx.media,
  84         javafx.swing,
  85         javafx.web;
  86     exports com.sun.javafx.geom.transform to
  87         javafx.controls,
  88         javafx.media,
  89         javafx.swing,
  90         javafx.web;
  91     exports com.sun.javafx.iio to
  92         javafx.web;
  93     exports com.sun.javafx.menu to
  94         javafx.controls;
  95     exports com.sun.javafx.scene to
  96         javafx.controls,
  97         javafx.media,
  98         javafx.swing,
  99         javafx.web;
 100     exports com.sun.javafx.scene.input to
 101         javafx.controls,
 102         javafx.swing,
 103         javafx.web;
 104     exports com.sun.javafx.scene.layout to
 105         javafx.controls,
 106         javafx.web;
 107     exports com.sun.javafx.scene.text to
 108         javafx.controls,
 109         javafx.web;
 110     exports com.sun.javafx.scene.traversal to
 111         javafx.controls,
 112         javafx.web;
 113     exports com.sun.javafx.sg.prism to
 114         javafx.media,
 115         javafx.swing,
 116         javafx.web;
 117     exports com.sun.javafx.stage to
 118         javafx.controls,
 119         javafx.swing;
 120     exports com.sun.javafx.text to
 121         javafx.web;
 122     exports com.sun.javafx.tk to
 123         javafx.controls,
 124         javafx.media,
 125         javafx.swing,
 126         javafx.web;
 127     exports com.sun.javafx.util to
 128         javafx.controls,
 129         javafx.fxml,
 130         javafx.media,
 131         javafx.swing,
 132         javafx.web;
 133     exports com.sun.prism to
 134         javafx.media,
 135         javafx.web;
 136     exports com.sun.prism.image to
 137         javafx.web;
 138     exports com.sun.prism.paint to
 139         javafx.web;
 140     exports com.sun.scenario.effect to
 141         javafx.web;
 142     exports com.sun.scenario.effect.impl to
 143         javafx.web;
 144     exports com.sun.scenario.effect.impl.prism to
 145         javafx.web;
 146 }