File: android-changes.txt

package info (click to toggle)
android-platform-external-doclava 6.0.1%2Br55-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 3,472 kB
  • sloc: java: 44,517; xml: 10,021; cs: 1,760; makefile: 9; sh: 3
file content (18 lines) | stat: -rw-r--r-- 949 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Changes in this version relative to http://doclava.googlecode.com/
------------------------------------------------------------------

* Added a new command line option -showAnnotation <@interface classname>,
  which takes in a fully qualified annotation classname.  The specified
  annotation will override any @hide annotations within the javadoc.  To
  specify multiple annotations to override @hide, use multiple
  -showAnnotation options.

* Modified the Java stub generator code to write out annotations for
  methods and fields as well, not just classes. This meant adding a
  writeAnnotations call to writeMethod and to writeField

* Modified the writeAnnotations method to take a "isDeprecated"
  parameter, which when set adds a @Deprecated annotation if one
  doesn't already exist. This ensures that APIs only marked with a
  @deprecated documentation comment will also be marked as
  @Deprecated. Also strips out @Override annotations.