< prev index next >

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

Print this page
rev 10231 : 8171983: Add javadoc comments to module-info.java for javafx.* modules
Reviewed-by: kcr
   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 transitive 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;


   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;


< prev index next >