Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
205 views

PropertyChangeSupport for SpinnerNumberModel

I want to listen to the changes of the value of the SpinnerNumberModel for a JSpinner. I create a PropertyChangeSupport and put the model into it. I need the propertyChangeListener, because it shows ...
4
votes
2answers
184 views

@BeanProperty with PropertyChangeListener support?

@BeanProperty generates simple get/set methods. Is there a way to automatically generate such methods with support for firing property change events (e.g. I want to use it with JFace Databinding?)
3
votes
1answer
278 views

About Scala fields and property change events

As a followup to this question about Scala's @BeanProperty generating change events: What would it take to fully implement the behavior that annotating a var field with some custom annotation ...
1
vote
2answers
568 views

How to handle JTable data changed event

I have a JTable bound to a List property. I used NetBeans to add a property to my jpanel form, enabled/checked propertyChangeSupport, and bound my jTable to that property. Table is displaying the data ...
1
vote
1answer
324 views

Java PropertyChangeSupport does not fire for different properties

I have developed an own javaBean for Swing. Now I'm trying to catch two properties on change, using a PropertyChangeListener. The problem is that the PropertyChangeSupport for one of my properties in ...
0
votes
1answer
75 views

PropertyChangeSupport with weak references to PropertyChangeListener?

Java does not seem to deliver an implementation of PropertyChangeSupport with weak references to registered PropertyChangeListeners. It would not be very hard to implement this, but before I ...
0
votes
0answers
53 views

Adding propertyChangeSupport to Views in Android

I'm wanting to use the method firePropertyChange() in a custom View and couldn't find too much about it other than in the Android developer reference. In Java one could simply use the method in a ...
0
votes
2answers
990 views

Java Detect Variable Change Using PropertyChangeSupport and PropertyChangeListener

I'm trying to print out debug statements when some third party code changes a variable. For example, consider the following: public final class MysteryClass { private int secretCounter; public ...
0
votes
2answers
404 views

PropertyChangeSupport and equals method

I'll try to explain my problem as clear as possible :). I am using PropertyChangeSupport to notify registered views for changes in the properties. One of the property is an object which properties are ...