< prev index next >

jdk/src/java.desktop/share/classes/module-info.java

Print this page




  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 AWT and Swing user interface toolkits, plus APIs for
  28  * accessibility, audio, imaging, printing, and JavaBeans.
  29  *

  30  * @since 9
  31  */
  32 module java.desktop {
  33     requires transitive java.datatransfer;
  34     requires transitive java.xml;
  35     requires java.prefs;
  36 
  37     exports java.applet;
  38     exports java.awt;
  39     exports java.awt.color;
  40     exports java.awt.desktop;
  41     exports java.awt.dnd;
  42     exports java.awt.event;
  43     exports java.awt.font;
  44     exports java.awt.geom;
  45     exports java.awt.im;
  46     exports java.awt.im.spi;
  47     exports java.awt.image;
  48     exports java.awt.image.renderable;
  49     exports java.awt.print;




  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 AWT and Swing user interface toolkits, plus APIs for
  28  * accessibility, audio, imaging, printing, and JavaBeans.
  29  *
  30  * @moduleGraph
  31  * @since 9
  32  */
  33 module java.desktop {
  34     requires transitive java.datatransfer;
  35     requires transitive java.xml;
  36     requires java.prefs;
  37 
  38     exports java.applet;
  39     exports java.awt;
  40     exports java.awt.color;
  41     exports java.awt.desktop;
  42     exports java.awt.dnd;
  43     exports java.awt.event;
  44     exports java.awt.font;
  45     exports java.awt.geom;
  46     exports java.awt.im;
  47     exports java.awt.im.spi;
  48     exports java.awt.image;
  49     exports java.awt.image.renderable;
  50     exports java.awt.print;


< prev index next >