blob: a62b071dd25ad1724eeb10d618b185a90c0f6033 [file] [log] [blame]
Tor Norbye73934882012-02-29 07:50:52 -08001Changes in this version relative to http://doclava.googlecode.com/
2------------------------------------------------------------------
3
Maurice Chueb9343e2012-11-06 11:30:22 -08004* Added a new command line option -showAnnotation <@interface classname>,
5 which takes in a fully qualified annotation classname. The specified
6 annotation will override any @hide annotations within the javadoc. To
7 specify multiple annotations to override @hide, use multiple
8 -showAnnotation options.
9
Tor Norbye73934882012-02-29 07:50:52 -080010* Modified the Java stub generator code to write out annotations for
11 methods and fields as well, not just classes. This meant adding a
12 writeAnnotations call to writeMethod and to writeField
13
14* Modified the writeAnnotations method to take a "isDeprecated"
15 parameter, which when set adds a @Deprecated annotation if one
16 doesn't already exist. This ensures that APIs only marked with a
17 @deprecated documentation comment will also be marked as
18 @Deprecated. Also strips out @Override annotations.