item = [[NSMutableDictionary alloc] init];
[[self item] setObject:self.currentDay forKey:@"day"];
This is the code for iphone wat is its equivalent in java
item = [[NSMutableDictionary alloc] init];
[[self item] setObject:self.currentDay forKey:@"day"];
This is the code for iphone wat is its equivalent in java
Map<String, Object> item = new HashMap<String, Object>();
item.put( "day", currentDay );