blob: f40add343141d4a716cbd4322ded6f64154a6ac0 [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001#
2# Copyright 2002-2007 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#
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
36DOMAPI_PKGS = com.sun.java.browser.dom \
37 org.w3c.dom \
38 org.w3c.dom.bootstrap \
39 org.w3c.dom.ls \
40 org.w3c.dom.ranges \
41 org.w3c.dom.traversal \
42 org.w3c.dom.html \
43 org.w3c.dom.stylesheets \
44 org.w3c.dom.css \
45 org.w3c.dom.events \
46 org.w3c.dom.views
47
48JDI_PKGS = com.sun.jdi \
49 com.sun.jdi.event \
50 com.sun.jdi.request \
51 com.sun.jdi.connect \
52 com.sun.jdi.connect.spi
53
54MGMT_PKGS = com.sun.management
55
56JAAS_PKGS = com.sun.security.auth \
57 com.sun.security.auth.callback \
58 com.sun.security.auth.login \
59 com.sun.security.auth.module
60
61JGSS_PKGS = com.sun.security.jgss
62
63OLD_JSSE_PKGS = com.sun.net.ssl
64
65HTTPSERVER_PKGS = com.sun.net.httpserver \
66 com.sun.net.httpserver.spi
67
68DOCLETAPI_PKGS = com.sun.javadoc
69
70TAGLETAPI_FILE = com/sun/tools/doclets/Taglet.java
71
72MIRROR_PKGS = com.sun.mirror.apt \
73 com.sun.mirror.declaration \
74 com.sun.mirror.type \
75 com.sun.mirror.util
76
77ATTACH_PKGS = com.sun.tools.attach \
78 com.sun.tools.attach.spi
79
80JCONSOLE_PKGS = com.sun.tools.jconsole
81
82TREEAPI_PKGS = com.sun.source.tree \
83 com.sun.source.util
84
85SMARTCARDIO_PKGS = javax.smartcardio
86
87# non-core packages in rt.jar
88NON_CORE_PKGS = $(DOMAPI_PKGS) \
89 $(MGMT_PKGS) \
90 $(JAAS_PKGS) \
91 $(JGSS_PKGS) \
92 $(OLD_JSSE_PKGS) \
93 $(HTTPSERVER_PKGS) \
94 $(SMARTCARDIO_PKGS)