Are you sure you need to use an JFormattedTextField or can you use a JTextField with a DocumentListener as camickr suggest? What Formatter are you using?
It is only the code in the propertyChange() method that is executed when the propery is changed. So you have to update artistField from that method. You should also update JFormattedTectFields using setValue() instead of setText() since setText() only updates the text and not the actual content.
Try with this PropertyChangeListener:
titleField.addPropertyChangeListener("value", new PropertyChangeListener() {
public void propertyChange(PropertyChangeEvent e){
Object source = e.getSource();
if (source == titleField) {
String title = (String)titleField.getValue();
artistField.setValue(title);
}
}
});
Your JFormattedTextField needs a Formatter that can handle String. Here is a dumb formatter that just returns the same String (A JTextField and a DocumentListener is a better choice if you don't need a Formatter):
class StringFormatter extends AbstractFormatter {
@Override
public Object stringToValue(String text) throws ParseException {
return text;
}
@Override
public String valueToString(Object value) throws ParseException {
return (String)value;
}
}
You use it when you initilise the JFormattedTextField like:
JFormattedTextField titleField = new JFormattedTextField(new StringFormatter());