David Gimelle

Greenhorn
+ Follow
since Jan 06, 2006
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by David Gimelle

Have you try to return a Map ?

Exemple :
Map<String, String> myResult= new HashMap<String, String>();
myResult.put("x", "1");
myResult.put("y", "2");
myResult.put("z", "3");
return myResult;

David Gimelle
J2EE Developer
http://getj2ee.over-blog.com
16 years ago