Re: Jlist & JGoodies Binding



Hi,

Next, your UniversityCourse bean seems to be mixed up.
You call #setLevels with an ArrayList and have
a setter that accepts a String. Posting a compilable
and runnable example to the user mailing list will
help other users understand your situation.

Oops that is a typo.

the method should read like this:
//set the name
public void setLevels (List<Integer> value){
List<Integer> oldLevels = levels;
levels= value;
fireProperyChange(LEVELS_PROPERY,
oldLevels , value);

}

I have read the tutorials in detail, and my design is based on the
Album example. But I could not find an example similar to what I want
to do. But I will send this post to the mailing list.

Yours,
Me

.