001    /***
002     *
003     * Copyright (c) 2007 Paul Hammant
004     * All rights reserved.
005     *
006     * Redistribution and use in source and binary forms, with or without
007     * modification, are permitted provided that the following conditions
008     * are met:
009     * 1. Redistributions of source code must retain the above copyright
010     *    notice, this list of conditions and the following disclaimer.
011     * 2. Redistributions in binary form must reproduce the above copyright
012     *    notice, this list of conditions and the following disclaimer in the
013     *    documentation and/or other materials provided with the distribution.
014     * 3. Neither the name of the copyright holders nor the names of its
015     *    contributors may be used to endorse or promote products derived from
016     *    this software without specific prior written permission.
017     *
018     * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
019     * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
020     * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
021     * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
022     * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
023     * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
024     * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
025     * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
026     * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
027     * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
028     * THE POSSIBILITY OF SUCH DAMAGE.
029     */
030    package com.thoughtworks.paranamer.ant;
031    
032    import org.apache.tools.ant.BuildException;
033    import org.apache.tools.ant.Project;
034    import org.apache.tools.ant.Task;
035    
036    import com.thoughtworks.paranamer.generator.ParanamerGenerator;
037    import com.thoughtworks.paranamer.generator.QdoxParanamerGenerator;
038    
039    /**
040     * Ant Task to process SourcePath parameters names via ParanamerGenerator
041     *
042     * Use ParanamerTask instead.
043     * Parameters 'sourceDirectory' maps to 'srcdir' and outputDirectory maps to 'classdir' in the new taskdef.
044     *
045     * @author Paul Hammant
046     * @author Mauro Talevi
047     * @see ParanamerTask
048     * @deprecated since 2.2
049     */
050    public class ParanamerGeneratorTask extends Task {
051        private String sourceDirectory;
052        private String outputDirectory;
053    
054        public void execute() throws BuildException {
055            log("Generating parameter names from "+sourceDirectory+" to " + outputDirectory, Project.MSG_INFO);   
056            try {
057                makeQdoxParanamerGenerator().processSourcePath(sourceDirectory, outputDirectory);
058            } catch (Exception e) {
059                throw new BuildException("Failed to generate parameter names from "+sourceDirectory, e);
060            }
061        }
062    
063        public void setSourceDirectory(String sourceDirectory) {
064            this.sourceDirectory = sourceDirectory;
065        }
066    
067        public void setOutputDirectory(String outputDirectory) {
068            this.outputDirectory = outputDirectory;
069        }
070    
071        protected QdoxParanamerGenerator makeQdoxParanamerGenerator() {
072            return new QdoxParanamerGenerator();
073        }
074    }