1 #
   2 # Copyright (c) 2002, 2015, Oracle and/or its affiliates. All rights reserved.
   3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4 #
   5 # This code is free software; you can redistribute it and/or modify it
   6 # under the terms of the GNU General Public License version 2 only, as
   7 # published by the Free Software Foundation.  Oracle designates this
   8 # particular file as subject to the "Classpath" exception as provided
   9 # by Oracle in the LICENSE file that accompanied this code.
  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 # This file contains the package names of all the "non-core"
  28 # API published in the Java 2 SDK documentation. "Non-core" means
  29 # it includes all published API outside of the JDK API specification.
  30 #
  31 # These environment variables are used by javadoc in
  32 # make/docs/Makefile and are referenced by the localization
  33 # team when determining which APIs to extract javadoc
  34 # comments from.
  35 
  36 DOMAPI_PKGS = org.w3c.dom \
  37     org.w3c.dom.bootstrap \
  38     org.w3c.dom.ls \
  39     org.w3c.dom.ranges \
  40     org.w3c.dom.traversal \
  41     org.w3c.dom.html \
  42     org.w3c.dom.stylesheets \
  43     org.w3c.dom.css \
  44     org.w3c.dom.events \
  45     org.w3c.dom.views
  46 
  47 JDI_PKGS = com.sun.jdi \
  48     com.sun.jdi.event \
  49     com.sun.jdi.request \
  50     com.sun.jdi.connect \
  51     com.sun.jdi.connect.spi
  52 
  53 MGMT_PKGS = com.sun.management
  54 
  55 JAAS_PKGS = com.sun.security.auth \
  56     com.sun.security.auth.callback \
  57     com.sun.security.auth.login \
  58     com.sun.security.auth.module
  59 
  60 JGSS_PKGS = com.sun.security.jgss
  61 
  62 OLD_JSSE_PKGS = com.sun.net.ssl
  63 
  64 HTTPSERVER_PKGS = com.sun.net.httpserver \
  65     com.sun.net.httpserver.spi
  66 
  67 NIO_PKGS = com.sun.nio.file
  68 
  69 OLD_DOCLETAPI_PKGS = com.sun.javadoc
  70 
  71 DOCLETAPI_PKGS = jdk.javadoc.doclet \
  72     jdk.javadoc.doclet.taglet
  73 
  74 TAGLETAPI_FILE = com/sun/tools/doclets/Taglet.java
  75 
  76 TAGLETAPI_PKGS = com.sun.tools.doclets
  77 
  78 ATTACH_PKGS = com.sun.tools.attach \
  79     com.sun.tools.attach.spi
  80 
  81 JCONSOLE_PKGS = com.sun.tools.jconsole
  82 
  83 JSHELLAPI_PKGS = jdk.jshell
  84 
  85 TREEAPI_PKGS = com.sun.source.doctree \
  86     com.sun.source.tree \
  87     com.sun.source.util
  88 
  89 NASHORNAPI_PKGS = jdk.nashorn.api.scripting \
  90     jdk.nashorn.api.tree
  91    
  92 DYNALINKAPI_PKGS = jdk.dynalink \
  93     jdk.dynalink.beans \
  94     jdk.dynalink.linker \
  95     jdk.dynalink.linker.support \
  96     jdk.dynalink.support
  97 
  98 SMARTCARDIO_PKGS = javax.smartcardio
  99 
 100 SCTPAPI_PKGS = com.sun.nio.sctp
 101 
 102 ifeq ($(PLATFORM), macosx)
 103   APPLE_EXT_PKGS = com.apple.eawt \
 104       com.apple.eawt.event \
 105       com.apple.eio
 106 endif
 107 
 108 JDK_PKGS = jdk \
 109       jdk.net \
 110       jdk.management.cmm
 111 
 112 JACCESSAPI_PKGS = com.sun.java.accessibility.util
 113 
 114 # non-core packages in rt.jar
 115 NON_CORE_PKGS = $(DOMAPI_PKGS) \
 116     $(MGMT_PKGS) \
 117     $(JAAS_PKGS) \
 118     $(JGSS_PKGS) \
 119     $(NIO_PKGS) \
 120     $(OLD_JSSE_PKGS) \
 121     $(HTTPSERVER_PKGS) \
 122     $(SMARTCARDIO_PKGS) \
 123     $(SCTPAPI_PKGS) \
 124     $(APPLE_EXT_PKGS) \
 125     $(JDK_PKGS) \
 126     $(JACCESSAPI_PKGS)