alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

<?xml version="1.0"?>
<!--
	This build script is used to build the API help pages. At some point this should be replaced
	with a script that fits into the Eclipse nightly build process, but for now it was a quick way to get
	the help text into the plugin.
	
	If you make a significant API change you should run this script, which will generate new
	Javadoc.
-->

<project name="build-doc" default="main" basedir=".">
  	
  	<target name="main" depends="init, javadoc" description="Build the doc.zip file, including the Javadoc">
  	</target>
  	
  	<target name='init'>  	   	
  	 	
  	<target name='javadoc' depends='init'>
 		<property name='api.dir' value='help/reference/api' />
  		<delete dir="${api.dir}" />
  		<mkdir dir="${api.dir}" />
  		
		<javadoc 
  			destdir="${api.dir}" additionalparam="-breakiterator"
  			windowtitle="Performance Monitor Plug-in Classes"
  			doctitle="<h1>Performance Monitor Plug-in Classes</h1>"
  			header="Performance Monitor Plug-in Classes"
  			bottom="Generated on ${TODAY}">
			
  			<fileset dir=".." defaultexcludes="yes">
  				<include name="org.eclipse.perfmsr.core/src/**/*.java" />
  				<include name="org.eclipse.perfmsr.ui/src/**/*.java" />
  				<include name="org.eclipse.perfmsr.ui.client/src/**/*.java" />  				
  			</fileset>      		
  		</javadoc>
	</target>
</project>

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.