From b61a95320d8546499bf403e1f3d762d04d3da35b Mon Sep 17 00:00:00 2001 From: bwalding Date: Mon, 24 Feb 2003 13:58:54 +0000 Subject: [PATCH] o MAVEN-292: Should now work with reactor git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@112984 13f79535-47bb-0310-9956-ffa450edef68 --- jxr/plugin.jelly | 10 +++--- .../main/org/apache/maven/jxr/JxrBean.java | 34 +++---------------- 2 files changed, 10 insertions(+), 34 deletions(-) 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. *