blob: 8c4976954ecebbab5aac2e74fcd95defd7913d8e [file] [log] [blame]
/**
* methods with specific parameters (e.g. primitives)
* for use with groovy tests
*
* @author <a href="mailto:jeremy.rayner@bigfoot.com">Jeremy Rayner</a>
* @version $Revision$
*/
package groovy;
public class DummyMethods {
public String foo(String a, float b, float c) {
return "float args";
}
public String foo(String a, int b, int c) {
return "int args";
}
}