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


< prev index next >