jdk/src/java.desktop/share/classes/module-info.java
author prr
Fri, 10 Feb 2017 08:17:47 -0800
changeset 43728 e188ba772b26
parent 43724 a272f9475e44
parent 43710 8fa2058eb740
child 44417 a431edba1629
permissions -rw-r--r--
Merge
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.
43710
8fa2058eb740 8173957: Fix @since in module-info.java in dev/jdk repo
mli
parents: 42338
diff changeset
    29
 *
8fa2058eb740 8173957: Fix @since in module-info.java in dev/jdk repo
mli
parents: 42338
diff changeset
    30
 * @since 9
40405
127fac211e5c 8161965: Create initial javadoc description for modules
lancea
parents: 39872
diff changeset
    31
 */
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    32
module java.desktop {
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
    33
    requires transitive java.datatransfer;
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
    34
    requires transitive java.xml;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    35
    requires java.prefs;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    36
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    37
    exports java.applet;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    38
    exports java.awt;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    39
    exports java.awt.color;
36903
addc2e9d4bd4 8143227: Platform-Specific Desktop Features
azvegint
parents: 36511
diff changeset
    40
    exports java.awt.desktop;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    41
    exports java.awt.dnd;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    42
    exports java.awt.event;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    43
    exports java.awt.font;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    44
    exports java.awt.geom;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    45
    exports java.awt.im;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    46
    exports java.awt.im.spi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    47
    exports java.awt.image;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    48
    exports java.awt.image.renderable;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    49
    exports java.awt.print;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    50
    exports java.beans;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    51
    exports java.beans.beancontext;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    52
    exports javax.accessibility;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    53
    exports javax.imageio;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    54
    exports javax.imageio.event;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    55
    exports javax.imageio.metadata;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    56
    exports javax.imageio.plugins.bmp;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    57
    exports javax.imageio.plugins.jpeg;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    58
    exports javax.imageio.plugins.tiff;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    59
    exports javax.imageio.spi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    60
    exports javax.imageio.stream;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    61
    exports javax.print;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    62
    exports javax.print.attribute;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    63
    exports javax.print.attribute.standard;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    64
    exports javax.print.event;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    65
    exports javax.sound.midi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    66
    exports javax.sound.midi.spi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    67
    exports javax.sound.sampled;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    68
    exports javax.sound.sampled.spi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    69
    exports javax.swing;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    70
    exports javax.swing.border;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    71
    exports javax.swing.colorchooser;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    72
    exports javax.swing.event;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    73
    exports javax.swing.filechooser;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    74
    exports javax.swing.plaf;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    75
    exports javax.swing.plaf.basic;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    76
    exports javax.swing.plaf.metal;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    77
    exports javax.swing.plaf.multi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    78
    exports javax.swing.plaf.nimbus;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    79
    exports javax.swing.plaf.synth;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    80
    exports javax.swing.table;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    81
    exports javax.swing.text;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    82
    exports javax.swing.text.html;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    83
    exports javax.swing.text.html.parser;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    84
    exports javax.swing.text.rtf;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    85
    exports javax.swing.tree;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    86
    exports javax.swing.undo;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    87
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    88
    // qualified exports may be inserted at build time
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    89
    // see make/GensrcModuleInfo.gmk
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    90
    exports sun.awt to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    91
        jdk.accessibility;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    92
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
    93
    opens javax.swing.plaf.basic to
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
    94
        jdk.jconsole;
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
    95
    opens com.sun.java.swing.plaf.windows to
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
    96
        jdk.jconsole;
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
    97
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    98
    uses java.awt.im.spi.InputMethodDescriptor;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    99
    uses javax.accessibility.AccessibilityProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   100
    uses javax.imageio.spi.ImageInputStreamSpi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   101
    uses javax.imageio.spi.ImageOutputStreamSpi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   102
    uses javax.imageio.spi.ImageReaderSpi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   103
    uses javax.imageio.spi.ImageTranscoderSpi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   104
    uses javax.imageio.spi.ImageWriterSpi;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   105
    uses javax.print.PrintServiceLookup;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   106
    uses javax.print.StreamPrintServiceFactory;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   107
    uses javax.sound.midi.spi.MidiDeviceProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   108
    uses javax.sound.midi.spi.MidiFileReader;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   109
    uses javax.sound.midi.spi.MidiFileWriter;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   110
    uses javax.sound.midi.spi.SoundbankReader;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   111
    uses javax.sound.sampled.spi.AudioFileReader;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   112
    uses javax.sound.sampled.spi.AudioFileWriter;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   113
    uses javax.sound.sampled.spi.FormatConversionProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   114
    uses javax.sound.sampled.spi.MixerProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   115
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   116
    provides sun.datatransfer.DesktopDatatransferService with sun.awt.datatransfer.DesktopDatatransferServiceImpl;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   117
    provides java.net.ContentHandlerFactory with sun.awt.www.content.MultimediaContentHandlers;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   118
    provides javax.print.PrintServiceLookup with sun.print.PrintServiceLookupProvider;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   119
    provides javax.print.StreamPrintServiceFactory with sun.print.PSStreamPrinterFactory;
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   120
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   121
    provides javax.sound.midi.spi.MidiDeviceProvider with
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   122
        com.sun.media.sound.MidiInDeviceProvider,
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   123
        com.sun.media.sound.MidiOutDeviceProvider,
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   124
        com.sun.media.sound.RealTimeSequencerProvider,
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   125
        com.sun.media.sound.SoftProvider;
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   126
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   127
    provides javax.sound.midi.spi.MidiFileReader with com.sun.media.sound.StandardMidiFileReader;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   128
    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
   129
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   130
    provides javax.sound.midi.spi.SoundbankReader with
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   131
         com.sun.media.sound.AudioFileSoundbankReader,
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   132
         com.sun.media.sound.DLSSoundbankReader,
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   133
         com.sun.media.sound.JARSoundbankReader,
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   134
         com.sun.media.sound.SF2SoundbankReader;
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   135
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   136
    provides javax.sound.sampled.spi.AudioFileReader with
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   137
        com.sun.media.sound.AiffFileReader,
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   138
        com.sun.media.sound.AuFileReader,
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   139
        com.sun.media.sound.SoftMidiAudioFileReader,
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   140
        com.sun.media.sound.WaveFileReader,
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   141
        com.sun.media.sound.WaveFloatFileReader,
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   142
        com.sun.media.sound.WaveExtensibleFileReader;
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   143
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   144
    provides javax.sound.sampled.spi.AudioFileWriter with
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   145
        com.sun.media.sound.AiffFileWriter,
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   146
        com.sun.media.sound.AuFileWriter,
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   147
        com.sun.media.sound.WaveFileWriter,
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   148
        com.sun.media.sound.WaveFloatFileWriter;
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   149
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   150
    provides javax.sound.sampled.spi.FormatConversionProvider with
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   151
        com.sun.media.sound.AlawCodec,
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   152
        com.sun.media.sound.AudioFloatFormatConverter,
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   153
        com.sun.media.sound.PCMtoPCMCodec,
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   154
        com.sun.media.sound.UlawCodec;
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   155
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   156
    provides javax.sound.sampled.spi.MixerProvider with
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   157
        com.sun.media.sound.DirectAudioDeviceProvider,
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41804
diff changeset
   158
        com.sun.media.sound.PortMixerProvider;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   159
}
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   160