|
Groovy example source code file (SomeClass.java)
The Groovy SomeClass.java source code
package groovy;
/**
* Arbitrary holder for Java Methods to be called by Groovy TestCases.
*
* @author Dierk Koenig
*/
public class SomeClass {
// currently not supported to be called from Groovy
public String[][] anArrayOfStringArrays() {
return new String[][]{{"whatever"}};
}
public Object[] anArrayOfStringArraysWorkaround() {
return new Object[]{new String[]{"whatever", null}};
}
}
Other Groovy examples (source code examples)Here is a short list of links related to this Groovy SomeClass.java source code file: |
Other websites by Alvin Alexander:
Life/living in Alaska (OneMansAlaska.com)
How I Sold My Business (HowISoldMyBusiness.com)
Copyright 1998-2011 Alvin Alexander, devdaily.com
All Rights Reserved.