blob: 325f913278839eff0086aebd4db4946469c7c414 [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 DummyMethodsJava {
public String foo(String a, float b, float c) {
return "float args";
}
public String foo(String a, int b, int c) {
return "int args";
}
}