Update of 
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-interfaceextractor/src/test/java/org/xdoclet/testapp/interfaceextractor
In directory 
sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv11977/plugin-interfaceextractor/src/test/java/org/xdoclet/testapp/interfaceextractor

Added Files:
        Dummy.java OtherDummy.java ThirdDummy.java 
Log Message:
fixing interfaceextractor build

--- NEW FILE: Dummy.java ---
package org.xdoclet.testapp.interfaceextractor;

/**
 * @author greg
 * @author $Author: moinsmoins $ (last edit)
 * @version $Revision: 1.1 $
 */
public class Dummy {
    /**
     * this is dummy
     * @blah foo=bar
     */
    public String dummyMethod() {
        System.out.println("stuff");
        return "blah";
    }

    public String thisOnewillHaveDifferentReturnTypesInOtherClasses() {
        return "foo";
    }

    public Integer thisOnewillHaveDifferentParametersInOtherClasses() {
        return new Integer(27);
    }

    public int someLikeItHot(String yo) {
        return yo.hashCode();
    }

    public void toRemove() {
        System.out.println("should not be there");
    }

    public void otherDummy() {
        System.out.println("other");
    }

    public int onlyInThisClass() {
        return 1;
    }
}

--- NEW FILE: OtherDummy.java ---
package org.xdoclet.testapp.interfaceextractor;

/**
 * @author greg
 * @author $Author: moinsmoins $ (last edit)
 * @version $Revision: 1.1 $
 */
public class OtherDummy {
    /**
     * this is dummy, too.
     */
    public String dummyMethod() {
        System.out.println("stuff 2");
        return "blah 2";
    }

    public Integer thisOnewillHaveDifferentParametersInOtherClasses(int x) {
        return new Integer(x);
    }

    public int someLikeItHot(String yo) {
        return yo.hashCode() * 3;
    }

    public void otherDummy() {
        System.out.println("2-other");
    }

    public void toRemove() {
        System.out.println("should not be there");
    }

    public StringBuffer blah() {
        return new StringBuffer("blablabla");
    }

    public Integer thisOnewillHaveDifferentReturnTypesInOtherClasses() {
        return new Integer(3);
    }
}

--- NEW FILE: ThirdDummy.java ---
package org.xdoclet.testapp.interfaceextractor;

import java.util.Date;
import java.util.Random;

/**
 * @author greg
 * @author $Author: moinsmoins $ (last edit)
 * @version $Revision: 1.1 $
 */
public class ThirdDummy {

    public void otherDummy() {
        System.out.println("3) other");
    }

    public String dummyMethod() {
        System.out.println("stuff 3");
        return "blah 3";
    }

    public boolean random() {
        return new Random().nextBoolean();
    }

    public void toRemove() {
        System.out.println("should not be there");
    }

    public Date thisOnewillHaveDifferentReturnTypesInOtherClasses() {
        return new Date();
    }

    public int someLikeItHot(String yo) {
        return yo.hashCode() - 384;
    }

    public Integer thisOnewillHaveDifferentParametersInOtherClasses(int x, int 
y, String s) {
        return new Integer(x + y + s.hashCode());
    }


}



-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
xdoclet-plugins-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xdoclet-plugins-commits

Reply via email to