common/makefiles/javadoc/CORE_PKGS.gmk

changeset 478
2ba6f4da4bf3
child 536
fb1bf5e5bc9e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/common/makefiles/javadoc/CORE_PKGS.gmk	Tue Sep 18 11:29:16 2012 -0700
     1.3 @@ -0,0 +1,293 @@
     1.4 +#
     1.5 +# Copyright (c) 2001, 2011, Oracle and/or its affiliates. All rights reserved.
     1.6 +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.7 +#
     1.8 +# This code is free software; you can redistribute it and/or modify it
     1.9 +# under the terms of the GNU General Public License version 2 only, as
    1.10 +# published by the Free Software Foundation.  Oracle designates this
    1.11 +# particular file as subject to the "Classpath" exception as provided
    1.12 +# by Oracle in the LICENSE file that accompanied this code.
    1.13 +#
    1.14 +# This code is distributed in the hope that it will be useful, but WITHOUT
    1.15 +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    1.16 +# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    1.17 +# version 2 for more details (a copy is included in the LICENSE file that
    1.18 +# accompanied this code).
    1.19 +#
    1.20 +# You should have received a copy of the GNU General Public License version
    1.21 +# 2 along with this work; if not, write to the Free Software Foundation,
    1.22 +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    1.23 +#
    1.24 +# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    1.25 +# or visit www.oracle.com if you need additional information or have any
    1.26 +# questions.
    1.27 +#
    1.28 +
    1.29 +# EXCLUDE_PKGS is the list of packages to exclude from the
    1.30 +# Java API Specification.  Do not add these to CORE_PKGS.
    1.31 +# The concatenation of EXCLUDE_PKGS and CORE_PKGS
    1.32 +# should make up the list of all packages under the
    1.33 +# src/shared/classes directory of the JDK source tree.
    1.34 +#
    1.35 +EXCLUDE_PKGS =             \
    1.36 +  java.awt.peer            \
    1.37 +  java.awt.dnd.peer        \
    1.38 +  sun.*                    \
    1.39 +  com.sun.*                \
    1.40 +  org.apache.*             \
    1.41 +  org.jcp.*		   \
    1.42 +  org.w3c.dom.css          \
    1.43 +  org.w3c.dom.html         \
    1.44 +  org.w3c.dom.stylesheets  \
    1.45 +  org.w3c.dom.traversal    \
    1.46 +  org.w3c.dom.ranges       \
    1.47 +  org.w3c.dom.views        \
    1.48 +  org.omg.stub.javax.management.remote.rmi
    1.49 +
    1.50 +#
    1.51 +# ACTIVE_JSR_PKGS are packages that are part of an active JSR process--
    1.52 +# one that is doing its own review. These packages are not included when
    1.53 +# creating diff pages for the platform's JCP process.
    1.54 +# 
    1.55 +#       (see /java/pubs/apisrc/jdk/6.0/beta/make/docs/active_jsr_pkgs)
    1.56 +# Note:
    1.57 +# This is a list of regular expressions. So foo.* matches "foo" and "foo.bar".
    1.58 +#
    1.59 +ACTIVE_JSR_PKGS= \
    1.60 +  java.lang.invoke \
    1.61 +  java.sql  \
    1.62 +  javax.activation  \
    1.63 +  javax.annotation.*  \
    1.64 +  javax.jws.*  \
    1.65 +  javax.lang.*  \
    1.66 +  javax.management.*  \
    1.67 +  javax.script  \
    1.68 +  javax.sql.*  \
    1.69 +  javax.tools.*  \
    1.70 +  javax.xml.*  \
    1.71 +  org.w3c.*  \
    1.72 +  org.xml.sax
    1.73 +
    1.74 +#
    1.75 +# CORE_PKGS is the list of packages that form the
    1.76 +# Java API Specification.
    1.77 +#
    1.78 +### ***IMPORTANT NOTE***
    1.79 +### There is also a "REGEXP" variable in the docs/makefile that
    1.80 +### determines which table the packages go in on the main page.
    1.81 +### Currently, there is only table ("Platform Packages") and
    1.82 +### everything goes in it, so REGEXP is "*". But if that policy
    1.83 +### changes, packages added will need to be reflected in  that
    1.84 +### list of wildcard expressions, as well.
    1.85 +###
    1.86 +CORE_PKGS =                                      \
    1.87 +  java.applet                                    \
    1.88 +  java.awt                                       \
    1.89 +  java.awt.color                                 \
    1.90 +  java.awt.datatransfer                          \
    1.91 +  java.awt.dnd                                   \
    1.92 +  java.awt.event                                 \
    1.93 +  java.awt.font                                  \
    1.94 +  java.awt.geom                                  \
    1.95 +  java.awt.im                                    \
    1.96 +  java.awt.im.spi                                \
    1.97 +  java.awt.image                                 \
    1.98 +  java.awt.image.renderable                      \
    1.99 +  java.awt.print                                 \
   1.100 +  java.beans                                     \
   1.101 +  java.beans.beancontext                         \
   1.102 +  java.io                                        \
   1.103 +  java.lang                                      \
   1.104 +  java.lang.annotation                           \
   1.105 +  java.lang.instrument                           \
   1.106 +  java.lang.invoke                               \
   1.107 +  java.lang.management                           \
   1.108 +  java.lang.ref                                  \
   1.109 +  java.lang.reflect                              \
   1.110 +  java.math                                      \
   1.111 +  java.net                                       \
   1.112 +  java.nio                                       \
   1.113 +  java.nio.channels                              \
   1.114 +  java.nio.channels.spi                          \
   1.115 +  java.nio.charset                               \
   1.116 +  java.nio.charset.spi                           \
   1.117 +  java.nio.file					 \
   1.118 +  java.nio.file.attribute			 \
   1.119 +  java.nio.file.spi				 \
   1.120 +  java.rmi                                       \
   1.121 +  java.rmi.activation                            \
   1.122 +  java.rmi.dgc                                   \
   1.123 +  java.rmi.registry                              \
   1.124 +  java.rmi.server                                \
   1.125 +  java.security                                  \
   1.126 +  java.security.acl                              \
   1.127 +  java.security.cert                             \
   1.128 +  java.security.interfaces                       \
   1.129 +  java.security.spec                             \
   1.130 +  java.sql                                       \
   1.131 +  java.text                                      \
   1.132 +  java.text.spi                                  \
   1.133 +  java.util                                      \
   1.134 +  java.util.concurrent                           \
   1.135 +  java.util.concurrent.atomic                    \
   1.136 +  java.util.concurrent.locks                     \
   1.137 +  java.util.jar                                  \
   1.138 +  java.util.logging                              \
   1.139 +  java.util.prefs                                \
   1.140 +  java.util.regex                                \
   1.141 +  java.util.spi                                  \
   1.142 +  java.util.zip                                  \
   1.143 +  javax.accessibility                            \
   1.144 +  javax.activation                               \
   1.145 +  javax.activity                                 \
   1.146 +  javax.annotation                               \
   1.147 +  javax.annotation.processing                    \
   1.148 +  javax.crypto                                   \
   1.149 +  javax.crypto.interfaces                        \
   1.150 +  javax.crypto.spec                              \
   1.151 +  javax.imageio                                  \
   1.152 +  javax.imageio.event                            \
   1.153 +  javax.imageio.metadata                         \
   1.154 +  javax.imageio.plugins.jpeg                     \
   1.155 +  javax.imageio.plugins.bmp                      \
   1.156 +  javax.imageio.spi                              \
   1.157 +  javax.imageio.stream                           \
   1.158 +  javax.jws                                      \
   1.159 +  javax.jws.soap                                 \
   1.160 +  javax.lang.model                               \
   1.161 +  javax.lang.model.element                       \
   1.162 +  javax.lang.model.type                          \
   1.163 +  javax.lang.model.util                          \
   1.164 +  javax.management                               \
   1.165 +  javax.management.loading                       \
   1.166 +  javax.management.monitor                       \
   1.167 +  javax.management.relation                      \
   1.168 +  javax.management.openmbean                     \
   1.169 +  javax.management.timer                         \
   1.170 +  javax.management.modelmbean                    \
   1.171 +  javax.management.remote                        \
   1.172 +  javax.management.remote.rmi                    \
   1.173 +  javax.naming                                   \
   1.174 +  javax.naming.directory                         \
   1.175 +  javax.naming.event                             \
   1.176 +  javax.naming.ldap                              \
   1.177 +  javax.naming.spi                               \
   1.178 +  javax.net                                      \
   1.179 +  javax.net.ssl                                  \
   1.180 +  javax.print                                    \
   1.181 +  javax.print.attribute                          \
   1.182 +  javax.print.attribute.standard                 \
   1.183 +  javax.print.event                              \
   1.184 +  javax.rmi                                      \
   1.185 +  javax.rmi.CORBA                                \
   1.186 +  javax.rmi.ssl                                  \
   1.187 +  javax.script                                   \
   1.188 +  javax.security.auth                            \
   1.189 +  javax.security.auth.callback                   \
   1.190 +  javax.security.auth.kerberos                   \
   1.191 +  javax.security.auth.login                      \
   1.192 +  javax.security.auth.spi                        \
   1.193 +  javax.security.auth.x500                       \
   1.194 +  javax.security.cert                            \
   1.195 +  javax.security.sasl                            \
   1.196 +  javax.sound.sampled                            \
   1.197 +  javax.sound.sampled.spi                        \
   1.198 +  javax.sound.midi                               \
   1.199 +  javax.sound.midi.spi                           \
   1.200 +  javax.sql                                      \
   1.201 +  javax.sql.rowset                               \
   1.202 +  javax.sql.rowset.serial                        \
   1.203 +  javax.sql.rowset.spi                           \
   1.204 +  javax.swing                                    \
   1.205 +  javax.swing.border                             \
   1.206 +  javax.swing.colorchooser                       \
   1.207 +  javax.swing.filechooser                        \
   1.208 +  javax.swing.event                              \
   1.209 +  javax.swing.table                              \
   1.210 +  javax.swing.text                               \
   1.211 +  javax.swing.text.html                          \
   1.212 +  javax.swing.text.html.parser                   \
   1.213 +  javax.swing.text.rtf                           \
   1.214 +  javax.swing.tree                               \
   1.215 +  javax.swing.undo                               \
   1.216 +  javax.swing.plaf                               \
   1.217 +  javax.swing.plaf.basic                         \
   1.218 +  javax.swing.plaf.metal                         \
   1.219 +  javax.swing.plaf.multi                         \
   1.220 +  javax.swing.plaf.nimbus                        \
   1.221 +  javax.swing.plaf.synth                         \
   1.222 +  javax.tools                                    \
   1.223 +  javax.tools.annotation                         \
   1.224 +  javax.transaction                              \
   1.225 +  javax.transaction.xa                           \
   1.226 +  javax.xml.parsers                              \
   1.227 +  javax.xml.bind                                 \
   1.228 +  javax.xml.bind.annotation                      \
   1.229 +  javax.xml.bind.annotation.adapters             \
   1.230 +  javax.xml.bind.attachment                      \
   1.231 +  javax.xml.bind.helpers                         \
   1.232 +  javax.xml.bind.util                            \
   1.233 +  javax.xml.soap                                 \
   1.234 +  javax.xml.ws                                   \
   1.235 +  javax.xml.ws.handler                           \
   1.236 +  javax.xml.ws.handler.soap                      \
   1.237 +  javax.xml.ws.http                              \
   1.238 +  javax.xml.ws.soap                              \
   1.239 +  javax.xml.ws.spi                               \
   1.240 +  javax.xml.ws.spi.http                          \
   1.241 +  javax.xml.ws.wsaddressing                      \
   1.242 +  javax.xml.transform                            \
   1.243 +  javax.xml.transform.sax                        \
   1.244 +  javax.xml.transform.dom                        \
   1.245 +  javax.xml.transform.stax                       \
   1.246 +  javax.xml.transform.stream                     \
   1.247 +  javax.xml                                      \
   1.248 +  javax.xml.crypto				 \
   1.249 +  javax.xml.crypto.dom				 \
   1.250 +  javax.xml.crypto.dsig				 \
   1.251 +  javax.xml.crypto.dsig.dom			 \
   1.252 +  javax.xml.crypto.dsig.keyinfo			 \
   1.253 +  javax.xml.crypto.dsig.spec			 \
   1.254 +  javax.xml.datatype                             \
   1.255 +  javax.xml.validation                           \
   1.256 +  javax.xml.namespace                            \
   1.257 +  javax.xml.xpath                                \
   1.258 +  javax.xml.stream                               \
   1.259 +  javax.xml.stream.events                        \
   1.260 +  javax.xml.stream.util                          \
   1.261 +  org.ietf.jgss                                  \
   1.262 +  org.omg.CORBA                                  \
   1.263 +  org.omg.CORBA.DynAnyPackage                    \
   1.264 +  org.omg.CORBA.ORBPackage                       \
   1.265 +  org.omg.CORBA.TypeCodePackage                  \
   1.266 +  org.omg.stub.java.rmi                          \
   1.267 +  org.omg.CORBA.portable                         \
   1.268 +  org.omg.CORBA_2_3                              \
   1.269 +  org.omg.CORBA_2_3.portable                     \
   1.270 +  org.omg.CosNaming                              \
   1.271 +  org.omg.CosNaming.NamingContextExtPackage      \
   1.272 +  org.omg.CosNaming.NamingContextPackage         \
   1.273 +  org.omg.SendingContext                         \
   1.274 +  org.omg.PortableServer                         \
   1.275 +  org.omg.PortableServer.CurrentPackage          \
   1.276 +  org.omg.PortableServer.POAPackage              \
   1.277 +  org.omg.PortableServer.POAManagerPackage       \
   1.278 +  org.omg.PortableServer.ServantLocatorPackage   \
   1.279 +  org.omg.PortableServer.portable                \
   1.280 +  org.omg.PortableInterceptor                    \
   1.281 +  org.omg.PortableInterceptor.ORBInitInfoPackage \
   1.282 +  org.omg.Messaging                              \
   1.283 +  org.omg.IOP                                    \
   1.284 +  org.omg.IOP.CodecFactoryPackage                \
   1.285 +  org.omg.IOP.CodecPackage                       \
   1.286 +  org.omg.Dynamic                                \
   1.287 +  org.omg.DynamicAny                             \
   1.288 +  org.omg.DynamicAny.DynAnyPackage               \
   1.289 +  org.omg.DynamicAny.DynAnyFactoryPackage        \
   1.290 +  org.w3c.dom                                    \
   1.291 +  org.w3c.dom.events                             \
   1.292 +  org.w3c.dom.bootstrap                          \
   1.293 +  org.w3c.dom.ls                                 \
   1.294 +  org.xml.sax                                    \
   1.295 +  org.xml.sax.ext                                \
   1.296 +  org.xml.sax.helpers

mercurial