Path: blob/master/src/java.se/share/classes/module-info.java
41145 views
/*1* Copyright (c) 2014, 2020, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation. Oracle designates this7* particular file as subject to the "Classpath" exception as provided8* by Oracle in the LICENSE file that accompanied this code.9*10* This code is distributed in the hope that it will be useful, but WITHOUT11* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or12* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License13* version 2 for more details (a copy is included in the LICENSE file that14* accompanied this code).15*16* You should have received a copy of the GNU General Public License version17* 2 along with this work; if not, write to the Free Software Foundation,18* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.19*20* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA21* or visit www.oracle.com if you need additional information or have any22* questions.23*/2425/**26* Defines the API of the Java SE Platform.27*28* <dl class="notes">29* <dt>Optional for the Java SE Platform:</dt>30* <dd>31* <a href="{@docRoot}/../specs/jni/index.html">Java Native Interface (JNI)</a><br>32* <a href="{@docRoot}/../specs/jvmti.html">Java Virtual Machine Tool Interface (JVM TI)</a><br>33* <a href="{@docRoot}/../specs/jdwp/jdwp-spec.html">Java Debug Wire Protocol (JDWP)</a><br>34* </dd>35* </dl>36*37* @moduleGraph38* @since 939*/40module java.se {41requires transitive java.compiler;42requires transitive java.datatransfer;43requires transitive java.desktop;44requires transitive java.instrument;45requires transitive java.logging;46requires transitive java.management;47requires transitive java.management.rmi;48requires transitive java.naming;49requires transitive java.net.http;50requires transitive java.prefs;51requires transitive java.rmi;52requires transitive java.scripting;53requires transitive java.security.jgss;54requires transitive java.security.sasl;55requires transitive java.sql;56requires transitive java.sql.rowset;57requires transitive java.transaction.xa;58requires transitive java.xml;59requires transitive java.xml.crypto;60}616263