A Listener object that reacts to a changing value for an Objects property/variable
2
votes
3answers
24 views
JCheckBoxMenuItem Default Value
I'm trying to add an options menu to my program, with the options changeable using JCheckBoxMenuItems. Whatever the value of these options is will be saved to a file when the program closes. The file ...
0
votes
0answers
35 views
JCalendar Build
Using JCalendar, I have entered the following code from this site:
private void jCalendar2PropertyChange(java.beans.PropertyChangeEvent evt)
{
JCalendar jc = new JCalendar();
...
1
vote
1answer
55 views
Add item to GUI jCombo box
I have a Java program with a model and a GUI. On my Frame (that implements Observer) I have put a jcombobox with a list of registration from my model (that extends Observable).
When I click on a ...
1
vote
1answer
74 views
ManagedBean and PropertyChangeListener
I have two ManagedBeans (SessionScoped and ViewScoped)
@ManagedBean(name="sessionController")
@SessionScoped
public class SessionController implements Serializable{
private ...
0
votes
2answers
47 views
Can I receive property change events with a buffered JGoodies formatted textfield?
I have a method which binds my JTextField to a bean in JGoodies
public static JTextField bindDoubleTextField(PresentationModel<?> adapter, String
propertyName, boolean useBuffer)
{
...
0
votes
2answers
48 views
PropertyChange Listener for icons
I am trying to write a PropertyChange Listener which detects whether a JButton has an ImageIcon or not.
"icon" is a beans property but I can't seem to add iconListener or something equivalent to the ...
1
vote
1answer
142 views
Java: PropertyChangeListener for JTextArea No response?
I use PropertyChangeListener for JTextFields to listen for value change, and it works normally, and when I use it with JTextArea; no errors in the code and it is compiled normally. However this method ...
0
votes
1answer
148 views
Eclipse RCP propertychangelistener usage, the proper way?
I'm working on an editor to make changes to a list of emf objects. What I want is every time I modify those emf objects, my editor is to be refreshed to reflect the changes.
The approach I tried ...
0
votes
0answers
190 views
Digital clock swing
I have a live clock and time is updated every second using a Timer. The user can also change the time ans set it by clicking at a button go.
Digital clock implemented using a JSpinner and ...
1
vote
1answer
269 views
java property change listener
i need to handle a change-interaction between 2 classes.
public class HeadClass {
private Subclass sub;
public void refresh() {...}
}
public class Subclass{
ArrayList store;
public void add(T ...
0
votes
2answers
282 views
JProgressBar not triggering propertyChange on setProgress
I've read many different articles about JProgressBar...including the dodgy code found over at Java; here.
Most indicate you need a SwingWorker to get things happening properly, which makes perfect ...
0
votes
0answers
141 views
Property change listener does not work in android
here is my code for property change listener
Code in Loginactivity:
private PropertyChangeSupport changes = new PropertyChangeSupport(this);
changes.firePropertyChange("Message", 8, 10);
public ...
0
votes
0answers
88 views
PropertyChangeListener for a property in another class(groovy class with @bindable) in java
I have a groovy pojo which fires Property change events. Here is my code
package com.santosh.model
import groovy.beans.Bindable
import java.beans.PropertyChangeSupport
import ...
0
votes
1answer
341 views
JSplitPane with 2 JPanels, get size of JPanel after moving the divider
Status:
I want to display 2 JPanels which contain images using a JSplitPane (one image at the top, one image at the bottom)
When I move the divider of the pane, I want both panels to resize ...
1
vote
2answers
318 views
SwingWorker: propertyChange called seldomly
I seem to have a problem with SwingWorker.
I basically implemented the Java Example Code updating the UI from the propertyChange() method of my JFrame.
I also copied the sleep up to one second part ...
0
votes
6answers
406 views
return a variable value to main on button click
I want that main should print hello (in a pop up dialogue box) everytime the button is clicked. So I designed the following program but it doesn't seem to work. The program compiles and executes just ...
0
votes
1answer
382 views
Add PropertyChangeListener to JComboBox [closed]
How do I use PropertyChangeListener with JComboBox? When I write in editable JComboBox, I get the text written immediately because I changed the icon of the arrow button of the combobox; and key ...
0
votes
2answers
243 views
Get PropertyChangeListener notification on static variables (class variables)
In my code I need to know when a specific static variables change is value. I know that in Java I can register myself as listener for the instance variables but I can' t do that with the static ...
0
votes
1answer
73 views
propertyChangeListeners chain reacting, causing overflow
Just a snippet of code. Doing a project for class where I have to convert Celsius, Fahrenheit and Kelvin based on a change to their respective JFormattedTextFields. The problem is that when the ...
0
votes
2answers
149 views
Java: Do Something when user stops resizing window
I am currently programming a gui with JavaFX 2.0, which is resizable. When the user resizes the window, a big rectangle resizes with it. Now I need to push the new boundaries of this rectangle on to ...
1
vote
1answer
161 views
Why doesn't my propertylistener fire?
This is what my code looks like:
Class A {
private boolean valueChanged;
public static void main(String args[]) {
B obj = new B();
obj.addPropertyChangeListener("valueChanged", new ...
0
votes
1answer
98 views
how can I use PropertyChangeListner in GWT? or is there any better way of doing it?
I am trying to get the upload progress information from a servlet in GWT but SubmitCompleteHandler returns after completion of the server upload and the response retuned by the servlet.
Is it ...
1
vote
1answer
789 views
How to fire PropertyChange event from thread?
I'm making an android app, where I want to update a label when the property maxDbRecorded of the class Measure changes. So I implemented a PropertyChangeListener in my Activity.
public class ...
6
votes
1answer
195 views
How to avoid coupling the View and the Controller in Swing
I have recently come across a problem trying to implement Model-View-Controller in Swing.
I have a GUI class which consists of sub-panels, and those sub-panels consist of other sub-panels. Now in one ...
2
votes
3answers
334 views
Update JLabel when custom object property changes
I have a Java class and I want one of its properties to be displayed by a JLabel in a Swing desktop application:
class Item {
private String name;
private Integer quantity;
// getters, ...
2
votes
3answers
304 views
Java Swing — Writing a Ui that will repaint itself based on changes to a custom data object
First things first -- I had posted a question earlier wherein i had asked for help as to why my code was not working and this question is acting upon the advice i got in that question.
My use case is ...
1
vote
1answer
147 views
Java swing UI implementation, most likely involving a PropertyChangeListener
My use case is as follows --
I have a list(ArrayList) of objects, custom data objects.
Now i want to display or represent each of these data objects as a Box containing 3 buttons. So i would have n ...
5
votes
1answer
1k views
how to trigger an action in parent JPanel when a component in a child JPanel is updated (Java Swing)
I am trying to build an MVC application in Java Swing. I have a JPanel that contains four JComboBoxes and this JPanel is embedded into a parent JPanel. The parent JPanel has other controls in ...
0
votes
4answers
345 views
Add PropertyChangeListener to to multiple JComboBoxes
i have a Table with JComboBoxes and want to add aPropertyChangeListener to every single JComboBox, because some selections of ComboBoxes have to change the selectables of other JComboBoxes.
I can't ...
1
vote
2answers
207 views
Notifying objects about an event
I'm looking for an effective method to trigger a change in a set of objects after a change was done to the key object. What I want to do is this:
There is one object that if changed executes a method ...
0
votes
1answer
249 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
1answer
846 views
Netbeans Bound Field not updating GUI
I have setup a Netbeans form with a text-field bound to a bean property. The binding is supposed to be two-way, but only works one-way. Updates to the field in the GUI update the bean, but if the ...
7
votes
4answers
945 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 ...
2
votes
2answers
7k views
Java PropertyChangeListener
i'm trying to figure out how to listen a property change on another class. this is my code:
class with the property to listen:
public class ClassWithProperty {
private PropertyChangeSupport ...
2
votes
1answer
522 views
Detecting source of change in JPanel size
I have a class called TablePanel descended from JPanel. An instance of this class is resizing itself sometimes when I click on a check box that is in another part of the frame.
Is there some sort ...

