diff --git a/jxr/plugin.jelly b/jxr/plugin.jelly index dbbbbf5a..c866a22f 100644 --- a/jxr/plugin.jelly +++ b/jxr/plugin.jelly @@ -4,6 +4,7 @@ xmlns:j="jelly:core" xmlns:define="jelly:define" xmlns:doc="doc" + xmlns:util="jelly:util" xmlns:jxr="jxr"> @@ -72,12 +73,13 @@ - - + + + + - + Josh Lucas * @author Jason van Zyl * @author Brian Leonard - * @version $Id: JxrBean.java,v 1.4 2003/02/21 22:33:53 bwalding Exp $ + * @version $Id: JxrBean.java,v 1.5 2003/02/24 13:58:52 bwalding Exp $ */ public class JxrBean { @@ -92,14 +92,13 @@ public class JxrBean /* * See the doc comments for the corresponding getter/setter methods */ - private File basedir; private List sourceDirs; private String destDir; private String javadocDir; private String windowTitle; - private String docTitle;; - private String bottom;; - private String templateDir;; + private String docTitle; + private String bottom; + private String templateDir; /** * Default constructor @@ -147,31 +146,6 @@ public class JxrBean indexer.process(); } - /** - * Set the base directory to which the sourceDirs are relative - * - * @param basedir base directory - */ - public void setBasedir(File basedir) - { - this.basedir = basedir; - } - - /** - * see setBaseDir(File) - * - * @see setBasedir(File) - */ - public File getBasedir() - { - if (basedir == null) - { - return new File("."); - } - - return basedir; - } - /** * Creates a relative link from one directory to another. *