*
* @return
*/
private static RichStruct getRichStruct() {
int[][] intArr = new int[][] { {1, 2}, {3, 4}};
InnerStruct innerStruct2 = new InnerStruct(intArr, "Test", Color.green);
String[] strSeq = {"i", "Test"};
return new RichStruct(innerStruct2, strSeq, 1);
}