1 /*
   2  * Copyright (c) 2015, 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         jdk.dynalink,
  64         jdk.scripting.nashorn,
  65         jdk.scripting.nashorn.shell;
  66     exports com.sun.javafx.css to
  67         javafx.controls;
  68     exports com.sun.javafx.cursor to
  69         javafx.swing;
  70     exports com.sun.javafx.embed to
  71         javafx.swing;
  72     exports com.sun.javafx.font to
  73         javafx.web;
  74     exports com.sun.javafx.geom to
  75         javafx.controls,
  76         javafx.media,
  77         javafx.swing,
  78         javafx.web;
  79     exports com.sun.javafx.geom.transform to
  80         javafx.controls,
  81         javafx.media,
  82         javafx.swing,
  83         javafx.web;
  84     exports com.sun.javafx.iio to
  85         javafx.web;
  86     exports com.sun.javafx.jmx to
  87         javafx.media,
  88         javafx.swing,
  89         javafx.web;
  90     exports com.sun.javafx.menu to
  91         javafx.controls;
  92     exports com.sun.javafx.scene to
  93         javafx.controls,
  94         javafx.media,
  95         javafx.swing,
  96         javafx.web;
  97     exports com.sun.javafx.scene.input to
  98         javafx.controls,
  99         javafx.swing,
 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.web;
 125     exports com.sun.prism to
 126         javafx.media,
 127         javafx.web;
 128     exports com.sun.prism.image to
 129         javafx.web;
 130     exports com.sun.prism.paint to
 131         javafx.web;
 132     exports com.sun.scenario.effect to
 133         javafx.web;
 134     exports com.sun.scenario.effect.impl to
 135         javafx.web;
 136     exports com.sun.scenario.effect.impl.prism to
 137         javafx.web;
 138 }