< 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  * @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;




  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  * @provides javax.print.PrintServiceLookup
  31  * @provides javax.print.StreamPrintServiceFactory
  32  * @provides javax.sound.midi.spi.MidiDeviceProvider
  33  * @provides javax.sound.midi.spi.MidiFileReader
  34  * @provides javax.sound.midi.spi.MidiFileWriter
  35  * @provides javax.sound.midi.spi.SoundbankReader
  36  * @provides javax.sound.sampled.spi.AudioFileReader
  37  * @provides javax.sound.sampled.spi.AudioFileWriter
  38  * @provides javax.sound.sampled.spi.FormatConversionProvider
  39  * @provides javax.sound.sampled.spi.MixerProvider
  40  *
  41  * @uses java.awt.im.spi.InputMethodDescriptor
  42  * @uses javax.accessibility.AccessibilityProvider
  43  * @uses javax.imageio.spi.ImageInputStreamSpi
  44  * @uses javax.imageio.spi.ImageOutputStreamSpi
  45  * @uses javax.imageio.spi.ImageReaderSpi
  46  * @uses javax.imageio.spi.ImageTranscoderSpi
  47  * @uses javax.imageio.spi.ImageWriterSpi
  48  * @uses javax.print.PrintServiceLookup
  49  * @uses javax.print.StreamPrintServiceFactory
  50  * @uses javax.sound.midi.spi.MidiDeviceProvider
  51  * @uses javax.sound.midi.spi.MidiFileReader
  52  * @uses javax.sound.midi.spi.MidiFileWriter
  53  * @uses javax.sound.midi.spi.SoundbankReader
  54  * @uses javax.sound.sampled.spi.AudioFileReader
  55  * @uses javax.sound.sampled.spi.AudioFileWriter
  56  * @uses javax.sound.sampled.spi.FormatConversionProvider
  57  * @uses javax.sound.sampled.spi.MixerProvider
  58  *
  59  * @moduleGraph
  60  * @since 9
  61  */
  62 module java.desktop {
  63     requires transitive java.datatransfer;
  64     requires transitive java.xml;
  65     requires java.prefs;
  66 
  67     exports java.applet;
  68     exports java.awt;
  69     exports java.awt.color;
  70     exports java.awt.desktop;
  71     exports java.awt.dnd;
  72     exports java.awt.event;
  73     exports java.awt.font;
  74     exports java.awt.geom;
  75     exports java.awt.im;
  76     exports java.awt.im.spi;
  77     exports java.awt.image;
  78     exports java.awt.image.renderable;


< prev index next >