common/makefiles/javadoc/CORE_PKGS.gmk

Tue, 18 Sep 2012 11:29:16 -0700

author
ohair
date
Tue, 18 Sep 2012 11:29:16 -0700
changeset 478
2ba6f4da4bf3
child 536
fb1bf5e5bc9e
permissions
-rw-r--r--

7197849: Update new build-infra makefiles
Reviewed-by: ihse, erikj, ohrstrom, tbell

ohair@478 1 #
ohair@478 2 # Copyright (c) 2001, 2011, Oracle and/or its affiliates. All rights reserved.
ohair@478 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
ohair@478 4 #
ohair@478 5 # This code is free software; you can redistribute it and/or modify it
ohair@478 6 # under the terms of the GNU General Public License version 2 only, as
ohair@478 7 # published by the Free Software Foundation. Oracle designates this
ohair@478 8 # particular file as subject to the "Classpath" exception as provided
ohair@478 9 # by Oracle in the LICENSE file that accompanied this code.
ohair@478 10 #
ohair@478 11 # This code is distributed in the hope that it will be useful, but WITHOUT
ohair@478 12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
ohair@478 13 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
ohair@478 14 # version 2 for more details (a copy is included in the LICENSE file that
ohair@478 15 # accompanied this code).
ohair@478 16 #
ohair@478 17 # You should have received a copy of the GNU General Public License version
ohair@478 18 # 2 along with this work; if not, write to the Free Software Foundation,
ohair@478 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
ohair@478 20 #
ohair@478 21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
ohair@478 22 # or visit www.oracle.com if you need additional information or have any
ohair@478 23 # questions.
ohair@478 24 #
ohair@478 25
ohair@478 26 # EXCLUDE_PKGS is the list of packages to exclude from the
ohair@478 27 # Java API Specification. Do not add these to CORE_PKGS.
ohair@478 28 # The concatenation of EXCLUDE_PKGS and CORE_PKGS
ohair@478 29 # should make up the list of all packages under the
ohair@478 30 # src/shared/classes directory of the JDK source tree.
ohair@478 31 #
ohair@478 32 EXCLUDE_PKGS = \
ohair@478 33 java.awt.peer \
ohair@478 34 java.awt.dnd.peer \
ohair@478 35 sun.* \
ohair@478 36 com.sun.* \
ohair@478 37 org.apache.* \
ohair@478 38 org.jcp.* \
ohair@478 39 org.w3c.dom.css \
ohair@478 40 org.w3c.dom.html \
ohair@478 41 org.w3c.dom.stylesheets \
ohair@478 42 org.w3c.dom.traversal \
ohair@478 43 org.w3c.dom.ranges \
ohair@478 44 org.w3c.dom.views \
ohair@478 45 org.omg.stub.javax.management.remote.rmi
ohair@478 46
ohair@478 47 #
ohair@478 48 # ACTIVE_JSR_PKGS are packages that are part of an active JSR process--
ohair@478 49 # one that is doing its own review. These packages are not included when
ohair@478 50 # creating diff pages for the platform's JCP process.
ohair@478 51 #
ohair@478 52 # (see /java/pubs/apisrc/jdk/6.0/beta/make/docs/active_jsr_pkgs)
ohair@478 53 # Note:
ohair@478 54 # This is a list of regular expressions. So foo.* matches "foo" and "foo.bar".
ohair@478 55 #
ohair@478 56 ACTIVE_JSR_PKGS= \
ohair@478 57 java.lang.invoke \
ohair@478 58 java.sql \
ohair@478 59 javax.activation \
ohair@478 60 javax.annotation.* \
ohair@478 61 javax.jws.* \
ohair@478 62 javax.lang.* \
ohair@478 63 javax.management.* \
ohair@478 64 javax.script \
ohair@478 65 javax.sql.* \
ohair@478 66 javax.tools.* \
ohair@478 67 javax.xml.* \
ohair@478 68 org.w3c.* \
ohair@478 69 org.xml.sax
ohair@478 70
ohair@478 71 #
ohair@478 72 # CORE_PKGS is the list of packages that form the
ohair@478 73 # Java API Specification.
ohair@478 74 #
ohair@478 75 ### ***IMPORTANT NOTE***
ohair@478 76 ### There is also a "REGEXP" variable in the docs/makefile that
ohair@478 77 ### determines which table the packages go in on the main page.
ohair@478 78 ### Currently, there is only table ("Platform Packages") and
ohair@478 79 ### everything goes in it, so REGEXP is "*". But if that policy
ohair@478 80 ### changes, packages added will need to be reflected in that
ohair@478 81 ### list of wildcard expressions, as well.
ohair@478 82 ###
ohair@478 83 CORE_PKGS = \
ohair@478 84 java.applet \
ohair@478 85 java.awt \
ohair@478 86 java.awt.color \
ohair@478 87 java.awt.datatransfer \
ohair@478 88 java.awt.dnd \
ohair@478 89 java.awt.event \
ohair@478 90 java.awt.font \
ohair@478 91 java.awt.geom \
ohair@478 92 java.awt.im \
ohair@478 93 java.awt.im.spi \
ohair@478 94 java.awt.image \
ohair@478 95 java.awt.image.renderable \
ohair@478 96 java.awt.print \
ohair@478 97 java.beans \
ohair@478 98 java.beans.beancontext \
ohair@478 99 java.io \
ohair@478 100 java.lang \
ohair@478 101 java.lang.annotation \
ohair@478 102 java.lang.instrument \
ohair@478 103 java.lang.invoke \
ohair@478 104 java.lang.management \
ohair@478 105 java.lang.ref \
ohair@478 106 java.lang.reflect \
ohair@478 107 java.math \
ohair@478 108 java.net \
ohair@478 109 java.nio \
ohair@478 110 java.nio.channels \
ohair@478 111 java.nio.channels.spi \
ohair@478 112 java.nio.charset \
ohair@478 113 java.nio.charset.spi \
ohair@478 114 java.nio.file \
ohair@478 115 java.nio.file.attribute \
ohair@478 116 java.nio.file.spi \
ohair@478 117 java.rmi \
ohair@478 118 java.rmi.activation \
ohair@478 119 java.rmi.dgc \
ohair@478 120 java.rmi.registry \
ohair@478 121 java.rmi.server \
ohair@478 122 java.security \
ohair@478 123 java.security.acl \
ohair@478 124 java.security.cert \
ohair@478 125 java.security.interfaces \
ohair@478 126 java.security.spec \
ohair@478 127 java.sql \
ohair@478 128 java.text \
ohair@478 129 java.text.spi \
ohair@478 130 java.util \
ohair@478 131 java.util.concurrent \
ohair@478 132 java.util.concurrent.atomic \
ohair@478 133 java.util.concurrent.locks \
ohair@478 134 java.util.jar \
ohair@478 135 java.util.logging \
ohair@478 136 java.util.prefs \
ohair@478 137 java.util.regex \
ohair@478 138 java.util.spi \
ohair@478 139 java.util.zip \
ohair@478 140 javax.accessibility \
ohair@478 141 javax.activation \
ohair@478 142 javax.activity \
ohair@478 143 javax.annotation \
ohair@478 144 javax.annotation.processing \
ohair@478 145 javax.crypto \
ohair@478 146 javax.crypto.interfaces \
ohair@478 147 javax.crypto.spec \
ohair@478 148 javax.imageio \
ohair@478 149 javax.imageio.event \
ohair@478 150 javax.imageio.metadata \
ohair@478 151 javax.imageio.plugins.jpeg \
ohair@478 152 javax.imageio.plugins.bmp \
ohair@478 153 javax.imageio.spi \
ohair@478 154 javax.imageio.stream \
ohair@478 155 javax.jws \
ohair@478 156 javax.jws.soap \
ohair@478 157 javax.lang.model \
ohair@478 158 javax.lang.model.element \
ohair@478 159 javax.lang.model.type \
ohair@478 160 javax.lang.model.util \
ohair@478 161 javax.management \
ohair@478 162 javax.management.loading \
ohair@478 163 javax.management.monitor \
ohair@478 164 javax.management.relation \
ohair@478 165 javax.management.openmbean \
ohair@478 166 javax.management.timer \
ohair@478 167 javax.management.modelmbean \
ohair@478 168 javax.management.remote \
ohair@478 169 javax.management.remote.rmi \
ohair@478 170 javax.naming \
ohair@478 171 javax.naming.directory \
ohair@478 172 javax.naming.event \
ohair@478 173 javax.naming.ldap \
ohair@478 174 javax.naming.spi \
ohair@478 175 javax.net \
ohair@478 176 javax.net.ssl \
ohair@478 177 javax.print \
ohair@478 178 javax.print.attribute \
ohair@478 179 javax.print.attribute.standard \
ohair@478 180 javax.print.event \
ohair@478 181 javax.rmi \
ohair@478 182 javax.rmi.CORBA \
ohair@478 183 javax.rmi.ssl \
ohair@478 184 javax.script \
ohair@478 185 javax.security.auth \
ohair@478 186 javax.security.auth.callback \
ohair@478 187 javax.security.auth.kerberos \
ohair@478 188 javax.security.auth.login \
ohair@478 189 javax.security.auth.spi \
ohair@478 190 javax.security.auth.x500 \
ohair@478 191 javax.security.cert \
ohair@478 192 javax.security.sasl \
ohair@478 193 javax.sound.sampled \
ohair@478 194 javax.sound.sampled.spi \
ohair@478 195 javax.sound.midi \
ohair@478 196 javax.sound.midi.spi \
ohair@478 197 javax.sql \
ohair@478 198 javax.sql.rowset \
ohair@478 199 javax.sql.rowset.serial \
ohair@478 200 javax.sql.rowset.spi \
ohair@478 201 javax.swing \
ohair@478 202 javax.swing.border \
ohair@478 203 javax.swing.colorchooser \
ohair@478 204 javax.swing.filechooser \
ohair@478 205 javax.swing.event \
ohair@478 206 javax.swing.table \
ohair@478 207 javax.swing.text \
ohair@478 208 javax.swing.text.html \
ohair@478 209 javax.swing.text.html.parser \
ohair@478 210 javax.swing.text.rtf \
ohair@478 211 javax.swing.tree \
ohair@478 212 javax.swing.undo \
ohair@478 213 javax.swing.plaf \
ohair@478 214 javax.swing.plaf.basic \
ohair@478 215 javax.swing.plaf.metal \
ohair@478 216 javax.swing.plaf.multi \
ohair@478 217 javax.swing.plaf.nimbus \
ohair@478 218 javax.swing.plaf.synth \
ohair@478 219 javax.tools \
ohair@478 220 javax.tools.annotation \
ohair@478 221 javax.transaction \
ohair@478 222 javax.transaction.xa \
ohair@478 223 javax.xml.parsers \
ohair@478 224 javax.xml.bind \
ohair@478 225 javax.xml.bind.annotation \
ohair@478 226 javax.xml.bind.annotation.adapters \
ohair@478 227 javax.xml.bind.attachment \
ohair@478 228 javax.xml.bind.helpers \
ohair@478 229 javax.xml.bind.util \
ohair@478 230 javax.xml.soap \
ohair@478 231 javax.xml.ws \
ohair@478 232 javax.xml.ws.handler \
ohair@478 233 javax.xml.ws.handler.soap \
ohair@478 234 javax.xml.ws.http \
ohair@478 235 javax.xml.ws.soap \
ohair@478 236 javax.xml.ws.spi \
ohair@478 237 javax.xml.ws.spi.http \
ohair@478 238 javax.xml.ws.wsaddressing \
ohair@478 239 javax.xml.transform \
ohair@478 240 javax.xml.transform.sax \
ohair@478 241 javax.xml.transform.dom \
ohair@478 242 javax.xml.transform.stax \
ohair@478 243 javax.xml.transform.stream \
ohair@478 244 javax.xml \
ohair@478 245 javax.xml.crypto \
ohair@478 246 javax.xml.crypto.dom \
ohair@478 247 javax.xml.crypto.dsig \
ohair@478 248 javax.xml.crypto.dsig.dom \
ohair@478 249 javax.xml.crypto.dsig.keyinfo \
ohair@478 250 javax.xml.crypto.dsig.spec \
ohair@478 251 javax.xml.datatype \
ohair@478 252 javax.xml.validation \
ohair@478 253 javax.xml.namespace \
ohair@478 254 javax.xml.xpath \
ohair@478 255 javax.xml.stream \
ohair@478 256 javax.xml.stream.events \
ohair@478 257 javax.xml.stream.util \
ohair@478 258 org.ietf.jgss \
ohair@478 259 org.omg.CORBA \
ohair@478 260 org.omg.CORBA.DynAnyPackage \
ohair@478 261 org.omg.CORBA.ORBPackage \
ohair@478 262 org.omg.CORBA.TypeCodePackage \
ohair@478 263 org.omg.stub.java.rmi \
ohair@478 264 org.omg.CORBA.portable \
ohair@478 265 org.omg.CORBA_2_3 \
ohair@478 266 org.omg.CORBA_2_3.portable \
ohair@478 267 org.omg.CosNaming \
ohair@478 268 org.omg.CosNaming.NamingContextExtPackage \
ohair@478 269 org.omg.CosNaming.NamingContextPackage \
ohair@478 270 org.omg.SendingContext \
ohair@478 271 org.omg.PortableServer \
ohair@478 272 org.omg.PortableServer.CurrentPackage \
ohair@478 273 org.omg.PortableServer.POAPackage \
ohair@478 274 org.omg.PortableServer.POAManagerPackage \
ohair@478 275 org.omg.PortableServer.ServantLocatorPackage \
ohair@478 276 org.omg.PortableServer.portable \
ohair@478 277 org.omg.PortableInterceptor \
ohair@478 278 org.omg.PortableInterceptor.ORBInitInfoPackage \
ohair@478 279 org.omg.Messaging \
ohair@478 280 org.omg.IOP \
ohair@478 281 org.omg.IOP.CodecFactoryPackage \
ohair@478 282 org.omg.IOP.CodecPackage \
ohair@478 283 org.omg.Dynamic \
ohair@478 284 org.omg.DynamicAny \
ohair@478 285 org.omg.DynamicAny.DynAnyPackage \
ohair@478 286 org.omg.DynamicAny.DynAnyFactoryPackage \
ohair@478 287 org.w3c.dom \
ohair@478 288 org.w3c.dom.events \
ohair@478 289 org.w3c.dom.bootstrap \
ohair@478 290 org.w3c.dom.ls \
ohair@478 291 org.xml.sax \
ohair@478 292 org.xml.sax.ext \
ohair@478 293 org.xml.sax.helpers

mercurial