OLD | NEW |
---|---|
(Empty) | |
1 <project> | |
2 <target name="doc" description="generate documentation"> | |
3 <javadoc destdir="${doc.dir}" | |
4 windowtitle="Cronet API" | |
5 nohelp="yes" | |
6 noindex="yes" | |
mef
2015/06/03 18:25:01
Not sure what noindex does, but it would make sens
xunjieli
2015/06/03 20:19:34
Done. Removed.
| |
7 notree="yes" | |
8 nodeprecated="yes" | |
9 > | |
10 <fileset dir="${source.dir}" defaultexcludes="yes"> | |
11 <include name="**/*.java"/> | |
mef
2015/06/03 18:25:01
Should we generate javadoc just for interface file
xunjieli
2015/06/03 20:19:34
Looking at the internal code base, our current emb
mef
2015/06/03 22:00:54
Sounds good, as long as only 'public' classes get
xunjieli
2015/06/04 13:37:35
Confirmed that non-public classes are not included
| |
12 <!-- exclude legacy API --> | |
13 <exclude name="**/Chromium*.java"/> | |
14 <exclude name="**/ChunkedWritableByteChannel*.java"/> | |
15 <exclude name="**/HttpUrl*.java"/> | |
16 </fileset> | |
17 </javadoc> | |
18 </target> | |
19 </project> | |
OLD | NEW |