1 package xdoclet.sdk.ant;
2
3 import xdoclet.XDoclet;
4
5 /***
6 * XDoclet subclass that introspects binary methods too.
7 *
8 * @author <a href="mailto:aslak.hellesoy at bekk.no">Aslak Hellesøy</a>
9 * @version $Revision: 1.1.1.1 $
10 */
11 public class AntDoclet extends XDoclet {
12 public AntDoclet() {
13 // by default, binary classes do not provide their
14 // methods for performance reasons, but it is needed
15 // here to climb up and find true tasks.
16 System.setProperty("xjavadoc.compiledmethods", "true");
17 }
18 }
This page was automatically generated by Maven