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