author | jfranck |
Wed, 15 Jan 2014 10:57:25 +0100 | |
changeset 22442 | 8fd30fc4e3a3 |
parent 14260 | 727a84636f12 |
permissions | -rw-r--r-- |
10 | 1 |
/* |
22442
8fd30fc4e3a3
8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents:
14260
diff
changeset
|
2 |
* Copyright (c) 2001, 2014, Oracle and/or its affiliates. All rights reserved. |
10 | 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 |
|
5520 | 7 |
* published by the Free Software Foundation. Oracle designates this |
10 | 8 |
* particular file as subject to the "Classpath" exception as provided |
5520 | 9 |
* by Oracle in the LICENSE file that accompanied this code. |
10 | 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 |
* |
|
5520 | 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. |
|
10 | 24 |
*/ |
25 |
||
26 |
package com.sun.tools.javadoc; |
|
27 |
||
1869 | 28 |
import java.util.EnumSet; |
29 |
import javax.tools.JavaFileObject; |
|
30 |
||
10 | 31 |
import com.sun.tools.javac.code.Symbol.PackageSymbol; |
32 |
import com.sun.tools.javac.jvm.ClassReader; |
|
33 |
import com.sun.tools.javac.util.Context; |
|
34 |
||
35 |
/** Javadoc uses an extended class reader that records package.html entries |
|
14260
727a84636f12
8000665: fix "internal API" comments on javadoc files
jjg
parents:
10189
diff
changeset
|
36 |
* |
727a84636f12
8000665: fix "internal API" comments on javadoc files
jjg
parents:
10189
diff
changeset
|
37 |
* <p><b>This is NOT part of any supported API. |
727a84636f12
8000665: fix "internal API" comments on javadoc files
jjg
parents:
10189
diff
changeset
|
38 |
* If you write code that depends on this, you do so at your own risk. |
727a84636f12
8000665: fix "internal API" comments on javadoc files
jjg
parents:
10189
diff
changeset
|
39 |
* This code and its internal interfaces are subject to change or |
727a84636f12
8000665: fix "internal API" comments on javadoc files
jjg
parents:
10189
diff
changeset
|
40 |
* deletion without notice.</b> |
727a84636f12
8000665: fix "internal API" comments on javadoc files
jjg
parents:
10189
diff
changeset
|
41 |
* |
10 | 42 |
* @author Neal Gafter |
43 |
*/ |
|
10189
57268b86d4da
7059905: (javadoc) promote method visibility for netbeans usage
ksrini
parents:
8614
diff
changeset
|
44 |
public class JavadocClassReader extends ClassReader { |
10 | 45 |
|
46 |
public static JavadocClassReader instance0(Context context) { |
|
47 |
ClassReader instance = context.get(classReaderKey); |
|
48 |
if (instance == null) |
|
49 |
instance = new JavadocClassReader(context); |
|
50 |
return (JavadocClassReader)instance; |
|
51 |
} |
|
52 |
||
8614 | 53 |
public static void preRegister(Context context) { |
10 | 54 |
context.put(classReaderKey, new Context.Factory<ClassReader>() { |
8614 | 55 |
public ClassReader make(Context c) { |
56 |
return new JavadocClassReader(c); |
|
10 | 57 |
} |
58 |
}); |
|
59 |
} |
|
60 |
||
61 |
private DocEnv docenv; |
|
62 |
private EnumSet<JavaFileObject.Kind> all = EnumSet.of(JavaFileObject.Kind.CLASS, |
|
63 |
JavaFileObject.Kind.SOURCE, |
|
64 |
JavaFileObject.Kind.HTML); |
|
65 |
private EnumSet<JavaFileObject.Kind> noSource = EnumSet.of(JavaFileObject.Kind.CLASS, |
|
66 |
JavaFileObject.Kind.HTML); |
|
67 |
||
10189
57268b86d4da
7059905: (javadoc) promote method visibility for netbeans usage
ksrini
parents:
8614
diff
changeset
|
68 |
public JavadocClassReader(Context context) { |
22442
8fd30fc4e3a3
8029690: Move symbol creation from ClassReader to Symtab
jfranck
parents:
14260
diff
changeset
|
69 |
super(context); |
10 | 70 |
docenv = DocEnv.instance(context); |
7332
3e90e60e4ce8
6942366: javadoc no longer inherits doc from sourcepath
jjg
parents:
5520
diff
changeset
|
71 |
preferSource = true; |
10 | 72 |
} |
73 |
||
74 |
/** |
|
75 |
* Override getPackageFileKinds to include search for package.html |
|
76 |
*/ |
|
77 |
@Override |
|
78 |
protected EnumSet<JavaFileObject.Kind> getPackageFileKinds() { |
|
79 |
return docenv.docClasses ? noSource : all; |
|
80 |
} |
|
81 |
||
82 |
/** |
|
83 |
* Override extraFileActions to check for package documentation |
|
84 |
*/ |
|
85 |
@Override |
|
86 |
protected void extraFileActions(PackageSymbol pack, JavaFileObject fo) { |
|
1869 | 87 |
if (fo.isNameCompatible("package", JavaFileObject.Kind.HTML)) |
88 |
docenv.getPackageDoc(pack).setDocPath(fo); |
|
10 | 89 |
} |
90 |
} |