jdk/src/java.desktop/share/classes/module-info.java
author alanb
Thu, 01 Dec 2016 08:57:53 +0000
changeset 42338 a60f280f803c
parent 41804 9b7750392368
child 43710 8fa2058eb740
child 43724 a272f9475e44
permissions -rw-r--r--
8169069: Module system implementation refresh (11/2016) Reviewed-by: plevart, chegar, psandoz, mchung, alanb, dfuchs, naoto, coffeys, weijun Contributed-by: alan.bateman@oracle.com, mandy.chung@oracle.com, claes.redestad@oracle.com, mark.reinhold@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     1
/*
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     2
 * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     4
 *
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    10
 *
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    15
 * accompanied this code).
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    16
 *
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    20
 *
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    23
 * questions.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    24
 */
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    25
39872
088180ff66b9 8161407: Provide a javadoc description for java.desktop module
prr
parents: 38413
diff changeset
    26
/**
40405
127fac211e5c 8161965: Create initial javadoc description for modules
lancea
parents: 39872
diff changeset
    27
 * Defines the AWT and Swing user interface toolkits, plus APIs for
127fac211e5c 8161965: Create initial javadoc description for modules
lancea
parents: 39872
diff changeset
    28
 * accessibility, audio, imaging, printing, and JavaBeans.
127fac211e5c 8161965: Create initial javadoc description for modules
lancea
parents: 39872
diff changeset
    29
 */
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    30
module java.desktop {
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
    31
    requires transitive java.datatransfer;
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
    32
    requires transitive java.xml;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    33
    requires java.prefs;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    34
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    35
    exports java.applet;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    36
    exports java.awt;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    37
    exports java.awt.color;
36903
addc2e9d4bd4 8143227: Platform-Specific Desktop Features
azvegint
parents: 36511
diff changeset
    38
    exports java.awt.desktop;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    39
    exports java.awt.dnd;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    40
    exports java.awt.event;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    41
    exports java.awt.font;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    42
    exports java.awt.geom;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    43
    exports java.awt.im;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    44
    exports java.awt.im.spi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    45
    exports java.awt.image;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    46
    exports java.awt.image.renderable;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    47
    exports java.awt.print;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    48
    exports java.beans;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    49
    exports java.beans.beancontext;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    50
    exports javax.accessibility;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    51
    exports javax.imageio;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    52
    exports javax.imageio.event;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    53
    exports javax.imageio.metadata;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    54
    exports javax.imageio.plugins.bmp;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    55
    exports javax.imageio.plugins.jpeg;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    56
    exports javax.imageio.plugins.tiff;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    57
    exports javax.imageio.spi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    58
    exports javax.imageio.stream;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    59
    exports javax.print;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    60
    exports javax.print.attribute;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    61
    exports javax.print.attribute.standard;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    62
    exports javax.print.event;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    63
    exports javax.sound.midi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    64
    exports javax.sound.midi.spi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    65
    exports javax.sound.sampled;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    66
    exports javax.sound.sampled.spi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    67
    exports javax.swing;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    68
    exports javax.swing.border;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    69
    exports javax.swing.colorchooser;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    70
    exports javax.swing.event;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    71
    exports javax.swing.filechooser;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    72
    exports javax.swing.plaf;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    73
    exports javax.swing.plaf.basic;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    74
    exports javax.swing.plaf.metal;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    75
    exports javax.swing.plaf.multi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    76
    exports javax.swing.plaf.nimbus;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    77
    exports javax.swing.plaf.synth;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    78
    exports javax.swing.table;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    79
    exports javax.swing.text;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    80
    exports javax.swing.text.html;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    81
    exports javax.swing.text.html.parser;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    82
    exports javax.swing.text.rtf;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    83
    exports javax.swing.tree;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    84
    exports javax.swing.undo;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    85
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    86
    // qualified exports may be inserted at build time
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    87
    // see make/GensrcModuleInfo.gmk
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    88
    exports sun.awt to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    89
        jdk.accessibility;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    90
41804
9b7750392368 8167126: Create a module to provide access to non-SE desktop APIs
prr
parents: 40405
diff changeset
    91
    exports com.sun.awt to
9b7750392368 8167126: Create a module to provide access to non-SE desktop APIs
prr
parents: 40405
diff changeset
    92
        jdk.desktop;
9b7750392368 8167126: Create a module to provide access to non-SE desktop APIs
prr
parents: 40405
diff changeset
    93
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
    94
    opens javax.swing.plaf.basic to
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
    95
        jdk.jconsole;
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
    96
    opens com.sun.java.swing.plaf.windows to
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
    97
        jdk.jconsole;
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
    98
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    99
    uses java.awt.im.spi.InputMethodDescriptor;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   100
    uses javax.accessibility.AccessibilityProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   101
    uses javax.imageio.spi.ImageInputStreamSpi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   102
    uses javax.imageio.spi.ImageOutputStreamSpi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   103
    uses javax.imageio.spi.ImageReaderSpi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   104
    uses javax.imageio.spi.ImageTranscoderSpi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   105
    uses javax.imageio.spi.ImageWriterSpi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   106
    uses javax.print.PrintServiceLookup;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   107
    uses javax.print.StreamPrintServiceFactory;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   108
    uses javax.sound.midi.spi.MidiDeviceProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   109
    uses javax.sound.midi.spi.MidiFileReader;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   110
    uses javax.sound.midi.spi.MidiFileWriter;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   111
    uses javax.sound.midi.spi.SoundbankReader;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   112
    uses javax.sound.sampled.spi.AudioFileReader;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   113
    uses javax.sound.sampled.spi.AudioFileWriter;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   114
    uses javax.sound.sampled.spi.FormatConversionProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   115
    uses javax.sound.sampled.spi.MixerProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   116
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   117
    provides sun.datatransfer.DesktopDatatransferService with sun.awt.datatransfer.DesktopDatatransferServiceImpl;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   118
    provides java.net.ContentHandlerFactory with sun.awt.www.content.MultimediaContentHandlers;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   119
    provides javax.print.PrintServiceLookup with sun.print.PrintServiceLookupProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   120
    provides javax.print.StreamPrintServiceFactory with sun.print.PSStreamPrinterFactory;
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   121
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   122
    provides javax.sound.midi.spi.MidiDeviceProvider with
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   123
        com.sun.media.sound.MidiInDeviceProvider,
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   124
        com.sun.media.sound.MidiOutDeviceProvider,
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   125
        com.sun.media.sound.RealTimeSequencerProvider,
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   126
        com.sun.media.sound.SoftProvider;
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   127
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   128
    provides javax.sound.midi.spi.MidiFileReader with com.sun.media.sound.StandardMidiFileReader;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   129
    provides javax.sound.midi.spi.MidiFileWriter with com.sun.media.sound.StandardMidiFileWriter;
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   130
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   131
    provides javax.sound.midi.spi.SoundbankReader with
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   132
         com.sun.media.sound.AudioFileSoundbankReader,
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   133
         com.sun.media.sound.DLSSoundbankReader,
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   134
         com.sun.media.sound.JARSoundbankReader,
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   135
         com.sun.media.sound.SF2SoundbankReader;
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   136
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   137
    provides javax.sound.sampled.spi.AudioFileReader with
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   138
        com.sun.media.sound.AiffFileReader,
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   139
        com.sun.media.sound.AuFileReader,
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   140
        com.sun.media.sound.SoftMidiAudioFileReader,
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   141
        com.sun.media.sound.WaveFileReader,
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   142
        com.sun.media.sound.WaveFloatFileReader,
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   143
        com.sun.media.sound.WaveExtensibleFileReader;
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   144
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   145
    provides javax.sound.sampled.spi.AudioFileWriter with
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   146
        com.sun.media.sound.AiffFileWriter,
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   147
        com.sun.media.sound.AuFileWriter,
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   148
        com.sun.media.sound.WaveFileWriter,
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   149
        com.sun.media.sound.WaveFloatFileWriter;
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   150
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   151
    provides javax.sound.sampled.spi.FormatConversionProvider with
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   152
        com.sun.media.sound.AlawCodec,
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   153
        com.sun.media.sound.AudioFloatFormatConverter,
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   154
        com.sun.media.sound.PCMtoPCMCodec,
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   155
        com.sun.media.sound.UlawCodec;
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   156
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   157
    provides javax.sound.sampled.spi.MixerProvider with
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   158
        com.sun.media.sound.DirectAudioDeviceProvider,
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   159
        com.sun.media.sound.PortMixerProvider;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   160
}
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   161