As shown in the pumps example a Java bean has to contain something like:

public void setVal(int v)
{
  int tmp = val;
  val = v;
  pcs.firePropertyChange("Val", tmp, v);
}

Now if I have dozens of classes with again dozens of members I have to
code all this in every single set() method.
Is there any better way?

Thanks a lot,
        tge

-- 
  Thomas Gentsch


---------------------------------------------------------------------
To unsubscribe, send the words 'unsubscribe jess-users [EMAIL PROTECTED]'
in the BODY of a message to [EMAIL PROTECTED], NOT to the
list (use your own address!) List problems? Notify [EMAIL PROTECTED]
---------------------------------------------------------------------

Reply via email to