1 #
   2 # Copyright (c) 2001, 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 # EXCLUDE_PKGS is the list of packages to exclude from the
  27 # Java API Specification. Do not add these to CORE_PKGS.
  28 # The concatenation of EXCLUDE_PKGS and CORE_PKGS
  29 # should make up the list of all packages under the
  30 # src/shared/classes directory of the JDK source tree.
  31 #
  32 EXCLUDE_PKGS = \
  33     java.awt.peer \
  34     java.awt.dnd.peer \
  35     sun.* \
  36     com.sun.* \
  37     org.apache.* \
  38     org.jcp.* \
  39     org.w3c.dom.css \
  40     org.w3c.dom.html \
  41     org.w3c.dom.stylesheets \
  42     org.omg.stub.javax.management.remote.rmi
  43 
  44 #
  45 # ACTIVE_JSR_PKGS are packages that are part of an active JSR process--
  46 # one that is doing its own review. These packages are not included when
  47 # creating diff pages for the platform's JCP process.
  48 #
  49 # (see /java/pubs/apisrc/jdk/6.0/beta/make/docs/active_jsr_pkgs)
  50 # Note:
  51 # This is a list of regular expressions. So foo.* matches "foo" and "foo.bar".
  52 #
  53 ACTIVE_JSR_PKGS= \
  54     java.lang.invoke \
  55     java.sql \
  56     javax.activation \
  57     javax.annotation.* \
  58     javax.jws.* \
  59     javax.lang.* \
  60     javax.management.* \
  61     javax.script \
  62     javax.sql.* \
  63     javax.tools.* \
  64     javax.xml.* \
  65     org.w3c.* \
  66     org.xml.sax
  67 
  68 #
  69 # CORE_PKGS is the list of packages that form the
  70 # Java API Specification.
  71 #
  72 ### ***IMPORTANT NOTE***
  73 ### There is also a "REGEXP" variable in the docs/makefile that
  74 ### determines which table the packages go in on the main page.
  75 ### Currently, there is only table ("Platform Packages") and
  76 ### everything goes in it, so REGEXP is "*". But if that policy
  77 ### changes, packages added will need to be reflected in that
  78 ### list of wildcard expressions, as well.
  79 ###
  80 CORE_PKGS = \
  81     java.applet \
  82     java.awt \
  83     java.awt.color \
  84     java.awt.datatransfer \
  85     java.awt.desktop \
  86     java.awt.dnd \
  87     java.awt.event \
  88     java.awt.font \
  89     java.awt.geom \
  90     java.awt.im \
  91     java.awt.im.spi \
  92     java.awt.image \
  93     java.awt.image.renderable \
  94     java.awt.print \
  95     java.beans \
  96     java.beans.beancontext \
  97     java.io \
  98     java.lang \
  99     java.lang.annotation \
 100     java.lang.instrument \
 101     java.lang.invoke \
 102     java.lang.management \
 103     java.lang.module \
 104     java.lang.ref \
 105     java.lang.reflect \
 106     java.math \
 107     java.net \
 108     java.net.http \
 109     java.net.spi \
 110     java.nio \
 111     java.nio.channels \
 112     java.nio.channels.spi \
 113     java.nio.charset \
 114     java.nio.charset.spi \
 115     java.nio.file \
 116     java.nio.file.attribute \
 117     java.nio.file.spi \
 118     java.rmi \
 119     java.rmi.activation \
 120     java.rmi.dgc \
 121     java.rmi.registry \
 122     java.rmi.server \
 123     java.security \
 124     java.security.acl \
 125     java.security.cert \
 126     java.security.interfaces \
 127     java.security.spec \
 128     java.sql \
 129     java.text \
 130     java.text.spi \
 131     java.time \
 132     java.time.chrono \
 133     java.time.format \
 134     java.time.temporal \
 135     java.time.zone \
 136     java.util \
 137     java.util.concurrent \
 138     java.util.concurrent.atomic \
 139     java.util.concurrent.locks \
 140     java.util.function \
 141     java.util.jar \
 142     java.util.logging \
 143     java.util.prefs \
 144     java.util.regex \
 145     java.util.spi \
 146     java.util.stream \
 147     java.util.zip \
 148     javax.accessibility \
 149     javax.activation \
 150     javax.activity \
 151     javax.annotation \
 152     javax.annotation.processing \
 153     javax.crypto \
 154     javax.crypto.interfaces \
 155     javax.crypto.spec \
 156     javax.imageio \
 157     javax.imageio.event \
 158     javax.imageio.metadata \
 159     javax.imageio.plugins.jpeg \
 160     javax.imageio.plugins.bmp \
 161     javax.imageio.plugins.tiff \
 162     javax.imageio.spi \
 163     javax.imageio.stream \
 164     javax.jws \
 165     javax.jws.soap \
 166     javax.lang.model \
 167     javax.lang.model.element \
 168     javax.lang.model.type \
 169     javax.lang.model.util \
 170     javax.management \
 171     javax.management.loading \
 172     javax.management.monitor \
 173     javax.management.relation \
 174     javax.management.openmbean \
 175     javax.management.timer \
 176     javax.management.modelmbean \
 177     javax.management.remote \
 178     javax.management.remote.rmi \
 179     javax.naming \
 180     javax.naming.directory \
 181     javax.naming.event \
 182     javax.naming.ldap \
 183     javax.naming.spi \
 184     javax.net \
 185     javax.net.ssl \
 186     javax.print \
 187     javax.print.attribute \
 188     javax.print.attribute.standard \
 189     javax.print.event \
 190     javax.rmi \
 191     javax.rmi.CORBA \
 192     javax.rmi.ssl \
 193     javax.script \
 194     javax.security.auth \
 195     javax.security.auth.callback \
 196     javax.security.auth.kerberos \
 197     javax.security.auth.login \
 198     javax.security.auth.spi \
 199     javax.security.auth.x500 \
 200     javax.security.cert \
 201     javax.security.sasl \
 202     javax.sound.sampled \
 203     javax.sound.sampled.spi \
 204     javax.sound.midi \
 205     javax.sound.midi.spi \
 206     javax.sql \
 207     javax.sql.rowset \
 208     javax.sql.rowset.serial \
 209     javax.sql.rowset.spi \
 210     javax.swing \
 211     javax.swing.border \
 212     javax.swing.colorchooser \
 213     javax.swing.filechooser \
 214     javax.swing.event \
 215     javax.swing.table \
 216     javax.swing.text \
 217     javax.swing.text.html \
 218     javax.swing.text.html.parser \
 219     javax.swing.text.rtf \
 220     javax.swing.tree \
 221     javax.swing.undo \
 222     javax.swing.plaf \
 223     javax.swing.plaf.basic \
 224     javax.swing.plaf.metal \
 225     javax.swing.plaf.multi \
 226     javax.swing.plaf.nimbus \
 227     javax.swing.plaf.synth \
 228     javax.tools \
 229     javax.transaction \
 230     javax.transaction.xa \
 231     javax.xml.catalog \
 232     javax.xml.parsers \
 233     javax.xml.bind \
 234     javax.xml.bind.annotation \
 235     javax.xml.bind.annotation.adapters \
 236     javax.xml.bind.attachment \
 237     javax.xml.bind.helpers \
 238     javax.xml.bind.util \
 239     javax.xml.soap \
 240     javax.xml.ws \
 241     javax.xml.ws.handler \
 242     javax.xml.ws.handler.soap \
 243     javax.xml.ws.http \
 244     javax.xml.ws.soap \
 245     javax.xml.ws.spi \
 246     javax.xml.ws.spi.http \
 247     javax.xml.ws.wsaddressing \
 248     javax.xml.transform \
 249     javax.xml.transform.sax \
 250     javax.xml.transform.dom \
 251     javax.xml.transform.stax \
 252     javax.xml.transform.stream \
 253     javax.xml \
 254     javax.xml.crypto \
 255     javax.xml.crypto.dom \
 256     javax.xml.crypto.dsig \
 257     javax.xml.crypto.dsig.dom \
 258     javax.xml.crypto.dsig.keyinfo \
 259     javax.xml.crypto.dsig.spec \
 260     javax.xml.datatype \
 261     javax.xml.validation \
 262     javax.xml.namespace \
 263     javax.xml.xpath \
 264     javax.xml.stream \
 265     javax.xml.stream.events \
 266     javax.xml.stream.util \
 267     org.ietf.jgss \
 268     org.omg.CORBA \
 269     org.omg.CORBA.DynAnyPackage \
 270     org.omg.CORBA.ORBPackage \
 271     org.omg.CORBA.TypeCodePackage \
 272     org.omg.stub.java.rmi \
 273     org.omg.CORBA.portable \
 274     org.omg.CORBA_2_3 \
 275     org.omg.CORBA_2_3.portable \
 276     org.omg.CosNaming \
 277     org.omg.CosNaming.NamingContextExtPackage \
 278     org.omg.CosNaming.NamingContextPackage \
 279     org.omg.SendingContext \
 280     org.omg.PortableServer \
 281     org.omg.PortableServer.CurrentPackage \
 282     org.omg.PortableServer.POAPackage \
 283     org.omg.PortableServer.POAManagerPackage \
 284     org.omg.PortableServer.ServantLocatorPackage \
 285     org.omg.PortableServer.portable \
 286     org.omg.PortableInterceptor \
 287     org.omg.PortableInterceptor.ORBInitInfoPackage \
 288     org.omg.Messaging \
 289     org.omg.IOP \
 290     org.omg.IOP.CodecFactoryPackage \
 291     org.omg.IOP.CodecPackage \
 292     org.omg.Dynamic \
 293     org.omg.DynamicAny \
 294     org.omg.DynamicAny.DynAnyPackage \
 295     org.omg.DynamicAny.DynAnyFactoryPackage \
 296     org.w3c.dom \
 297     org.w3c.dom.events \
 298     org.w3c.dom.bootstrap \
 299     org.w3c.dom.ls \
 300     org.w3c.dom.ranges \
 301     org.w3c.dom.traversal \
 302     org.w3c.dom.views \
 303     org.xml.sax \
 304     org.xml.sax.ext \
 305     org.xml.sax.helpers