You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be nice to have a way of configuring the change support implementation class. In Java Swing applications, developers may replace PropertyChangeSupport class with the extension SwingPropertyChangeSupport to ensure notifications are sent over AWT Event Dispatch Thread.
Instead deprecating the annotation @BountPropertySupport, it shoud allow to configure globally setter's AccessLevel too.
I think the solution would look like this:
@BountPropertySupport(type=SwingPropertyChangeSupport.class, level=AccessLevel.PACKAGE) //Default values are PropertyChangeSupport.class and AccessLevel.PUBLIC
public class Example {
...
}
The text was updated successfully, but these errors were encountered:
It would be nice to have a way of configuring the change support implementation class. In Java Swing applications, developers may replace PropertyChangeSupport class with the extension SwingPropertyChangeSupport to ensure notifications are sent over AWT Event Dispatch Thread.
Instead deprecating the annotation @BountPropertySupport, it shoud allow to configure globally setter's AccessLevel too.
I think the solution would look like this:
The text was updated successfully, but these errors were encountered: