KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > xdoclet > modules > spring > SpringDocletTask


1 /*
2  * Copyright (c) 2001, 2002 The XDoclet team
3  * All rights reserved.
4  */

5 package xdoclet.modules.spring;
6
7 import org.apache.tools.ant.BuildException;
8
9 import xdoclet.DocletTask;
10
11 /**
12  * This task executes various sub-tasks specific to the Spring framework.
13  *
14  * @author Craig Walls (xdoclet@habuma.com)
15  * @created November 9, 2003
16  * @ant.element name="springdoclet" display-name="Spring Task"
17  */

18 public class SpringDocletTask extends DocletTask
19 {
20     protected void validateOptions() throws BuildException
21     {
22         super.validateOptions();
23     }
24 }
25
Popular Tags