1 /*2 * Copyright (c) 2001, 2002 The XDoclet team3 * 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, 200316 * @ant.element name="springdoclet" display-name="Spring Task"17 */18 public class SpringDocletTask extends DocletTask19 {20 protected void validateOptions() throws BuildException21 {22 super.validateOptions();23 }24 }25