| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| File: javadoc.xml |
| Created: 2006 |
| |
| Copyright (c) 2005-2012 |
| Eclipse Java Workflow Tooling (JWT) Project <www.eclipse.org/jwt> |
| |
| All rights reserved. This program and the accompanying materials |
| are made available under the terms of the Eclipse Public License v1.0 |
| which accompanies this distribution, and is available at |
| http://www.eclipse.org/legal/epl-v10.html |
| --> |
| |
| <project name="JWT Workflow Editor" default="javadoc"> |
| |
| <property name="eclipse-home" value="/usr/local/share/eclipse"/> |
| <property name="emf-home" value="/usr/local/share/eclipse-plugins/emf-sdo-xsd-2.2.0RC4/eclipse"/> |
| <property name="gef-home" value="/usr/local/share/eclipse-plugins/gef-3.2RC2a/eclipse"/> |
| |
| <target name="javadoc"> |
| <javadoc access="private" |
| additionalparam=" -tag generated -tag model -tag ordered " |
| author="true" |
| destdir="doc" |
| doctitle="JWT Workflow Editor" |
| nodeprecated="false" |
| nodeprecatedlist="false" |
| noindex="false" |
| nonavbar="false" |
| notree="false" |
| packagenames="org.eclipse.jwt.we.*" |
| source="1.5" |
| sourcepath="src" |
| splitindex="true" |
| use="true" |
| version="true"> |
| |
| <classpath> |
| <fileset dir="${eclipse-home}/plugins"> |
| <include name="*.jar"/> |
| </fileset> |
| <fileset dir="${emf-home}/plugins"> |
| <include name="*.jar"/> |
| </fileset> |
| <fileset dir="${gef-home}/plugins"> |
| <include name="*.jar"/> |
| </fileset> |
| </classpath> |
| |
| <link offline="true" href="http://java.sun.com/j2se/1.5.0/docs/api/" packagelistLoc="doc/package-lists/java"/> |
| <link offline="true" href="http://help.eclipse.org/help31/topic/org.eclipse.platform.doc.isv/reference/api" packagelistLoc="doc/package-lists/eclipse"/> |
| <link offline="true" href="http://help.eclipse.org/help31/topic/org.eclipse.draw2d.doc.isv/reference/api" packagelistLoc="doc/package-lists/draw2d"/> |
| <link offline="true" href="http://help.eclipse.org/help31/topic/org.eclipse.gef.doc.isv/reference/api" packagelistLoc="doc/package-lists/gef"/> |
| <link offline="true" href="http://download.eclipse.org/tools/emf/2.2.0/javadoc/" packagelistLoc="doc/package-lists/emf"/> |
| </javadoc> |
| </target> |
| </project> |