Hi, In my domain object I have mutiple value property. I want to display a avaiblable values and selected values on my form, how do I do that?



For example



Class BusinessUnit {

String name;

.......

List employees;

}



I want to have two JLists side-by-side (standard windows available-selected lists) to add (>> ) and remove (<<) the employess for this BusinessUnit. On this form page I would only have these selection lists.



Thanks



Amad