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  * This module 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 module javafx.graphics {
  34     requires transitive javafx.base;
  35 
  36     requires java.desktop;
  37     requires java.xml;
  38     requires jdk.jsobject;
  39 
  40     exports javafx.animation;
  41     exports javafx.application;
  42     exports javafx.concurrent;
  43     exports javafx.css;
  44     exports javafx.css.converter;
  45     exports javafx.geometry;
  46     exports javafx.print;
  47     exports javafx.scene;
  48     exports javafx.scene.canvas;
  49     exports javafx.scene.effect;
  50     exports javafx.scene.image;
  51     exports javafx.scene.input;
  52     exports javafx.scene.layout;
  53     exports javafx.scene.paint;
  54     exports javafx.scene.shape;
  55     exports javafx.scene.text;
  56     exports javafx.scene.transform;
  57     exports javafx.stage;
  58 
  59     exports com.sun.glass.ui to
  60         javafx.media,
  61         javafx.web;
  62     exports com.sun.glass.utils to
  63         javafx.media,
  64         javafx.web;
  65     exports com.sun.javafx.application to
  66         java.base,
  67         javafx.controls,
  68         javafx.swing,
  69         javafx.web;
  70     exports com.sun.javafx.css to
  71         javafx.controls;
  72     exports com.sun.javafx.cursor to
  73         javafx.swing;
  74     exports com.sun.javafx.embed to
  75         javafx.swing;
  76     exports com.sun.javafx.font to
  77         javafx.web;
  78     exports com.sun.javafx.geom to
  79         javafx.controls,
  80         javafx.media,
  81         javafx.swing,
  82         javafx.web;
  83     exports com.sun.javafx.geom.transform to
  84         javafx.controls,
  85         javafx.media,
  86         javafx.swing,
  87         javafx.web;
  88     exports com.sun.javafx.iio to
  89         javafx.web;
  90     exports com.sun.javafx.jmx to
  91         javafx.media,
  92         javafx.swing,
  93         javafx.web;
  94     exports com.sun.javafx.menu to
  95         javafx.controls;
  96     exports com.sun.javafx.scene to
  97         javafx.controls,
  98         javafx.media,
  99         javafx.swing,
 100         javafx.web;
 101     exports com.sun.javafx.scene.input to
 102         javafx.controls,
 103         javafx.swing,
 104         javafx.web;
 105     exports com.sun.javafx.scene.layout to
 106         javafx.controls,
 107         javafx.web;
 108     exports com.sun.javafx.scene.text to
 109         javafx.controls,
 110         javafx.web;
 111     exports com.sun.javafx.scene.traversal to
 112         javafx.controls,
 113         javafx.web;
 114     exports com.sun.javafx.sg.prism to
 115         javafx.media,
 116         javafx.swing,
 117         javafx.web;
 118     exports com.sun.javafx.stage to
 119         javafx.controls,
 120         javafx.swing;
 121     exports com.sun.javafx.text to
 122         javafx.web;
 123     exports com.sun.javafx.tk to
 124         javafx.controls,
 125         javafx.media,
 126         javafx.swing,
 127         javafx.web;
 128     exports com.sun.javafx.util to
 129         javafx.controls,
 130         javafx.fxml,
 131         javafx.media,
 132         javafx.swing,
 133         javafx.web;
 134     exports com.sun.prism to
 135         javafx.media,
 136         javafx.web;
 137     exports com.sun.prism.image to
 138         javafx.web;
 139     exports com.sun.prism.paint to
 140         javafx.web;
 141     exports com.sun.scenario.effect to
 142         javafx.web;
 143     exports com.sun.scenario.effect.impl to
 144         javafx.web;
 145     exports com.sun.scenario.effect.impl.prism to
 146         javafx.web;
 147 }