}
private NSMutableArray sampleData() {
NSData data = new NSData(application().resourceManager().bytesForResourceNamed("AjaxGridExampleTestData.plist", null, NSArray.EmptyArray));
NSMutableArray sampleData = new NSMutableArray((NSArray) NSPropertyListSerialization.propertyListFromData(data, CharEncoding.UTF_8));
Random random = new Random(new NSTimestamp().getNanos());
for (int i = 0; i < sampleData.count(); i++) {
NSMutableDictionary<String,Object> row = (NSMutableDictionary<String,Object>) sampleData.objectAtIndex(i);
row.setObjectForKey(Integer.valueOf(random.nextInt()), "number");
row.setObjectForKey(new NSTimestamp(random.nextLong()), "date");
row.setObjectForKey(Integer.valueOf(i + 1).toString(), "level");
}
return sampleData;