< prev index next >

modules/javafx.graphics/src/main/java/module-info.java

Print this page
rev 10819 : 8195801: Replace jdk.internal.misc.Unsafe with sun.misc.Unsafe in MarlinFX
Reviewed-by:
   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  * 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 
  40     requires transitive javafx.base;
  41 
  42     exports javafx.animation;
  43     exports javafx.application;
  44     exports javafx.concurrent;
  45     exports javafx.css;
  46     exports javafx.css.converter;
  47     exports javafx.geometry;
  48     exports javafx.print;
  49     exports javafx.scene;
  50     exports javafx.scene.canvas;
  51     exports javafx.scene.effect;
  52     exports javafx.scene.image;
  53     exports javafx.scene.input;
  54     exports javafx.scene.layout;
  55     exports javafx.scene.paint;
  56     exports javafx.scene.shape;
  57     exports javafx.scene.text;
  58     exports javafx.scene.transform;


   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;


< prev index next >