API Deprecation Report Conversion Ant Task

Purpose

This task converts the XML report created by the apitooling.apideprecation Ant task into HTML files.

Usage

Description

The name of the Ant task is: apitooling.apideprecation_reportconversion. To be used, the jar file apitooling-ant.jar has to be on the Ant classpath.

	<apitooling.apideprecation_reportconversion
		xmlfiles="..."
		htmlfiles="..."
		debug="..."
	/>

Parameters

Attribute Description Required
xmlfiles This attribute specifies the location of the xml files to convert.

The location is specified using an absolute path.
Yes
htmlfiles This attribute specifies the location of the html files to generate.

The location is specified using an absolute path.
Yes
debug Set the debug value.

The possible values are: true, false
Default is false.
No

Examples

	<apitooling.apideprecation_reportconversion
		xmlfiles="/eclipse/deprecation/XML"
		htmlfiles="/eclipse/deprecation/HTML"
		debug="true"
	/>

This will run the task creating *.html files inside the folder /eclipse/deprecation/HTML corresponding to the folder structure of the XML file location

If debug is enabled, some debug tracing will show up in the Ant console.

Related reference

Analysis Ant Task
File Generation Ant Task
API Use Ant Task
API Freeze Ant Task
API Deprecation Ant Task
Analysis Report Conversion Ant Task