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