Hello

Assume that you have collection property "actors" in a mapped class "Movie"
and your code works fine this way:

Movie.java:
...
protected List<Artist> actors;
...


But I need to declare this property as:

Movie.java:
...  
protected ActorList actors
...

ActorList.java:
public class ActorList extends HashMap<Artist>
...

is it possible?
-- 
View this message in context: 
http://www.nabble.com/Manage-a-collection-wrapped-within-another-object-tp25937976p25937976.html
Sent from the iBATIS - User - Java mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: user-java-unsubscr...@ibatis.apache.org
For additional commands, e-mail: user-java-h...@ibatis.apache.org

Reply via email to