我有一个关于使用 Swing 组件时使用绑定属性的问题。所以,我有一个非常简单的 Java 类扩展了 JButton 类:
public class MyBean extends JButton
{
public static final String PROP_SAMPLE_PROPERTY = "sampleProperty";
private String sampleProperty;
public MyBean() {
addPropertyChangeListener(new java.beans.PropertyChangeListener()
{
@Override
public void propertyChange(java.beans.PropertyChangeEvent evt) {
componentPropertyChange(evt);
}
});
}
public String getSampleProperty() {
return sampleProperty;
}
public void setSampleProperty(String value) {
String oldValue = sampleProperty;
sampleProperty = value;
firePropertyChange(PROP_SAMPLE_PROPERTY, oldValue, sampleProperty);
}
// Handle a property being updated
static private void componentPropertyChange(java.beans.PropertyChangeEvent evt) {
String propertyName = evt.getPropertyName();
System.out.println(MyBean.class.getSimpleName() + " - '" + propertyName + "' changed");
}
}
这是我的主要课程:
public static void main(String[] args) {
try
{
Class<?> clazz = MyBean.class;
BeanInfo bi = Introspector.getBeanInfo(clazz);
PropertyDescriptor[] pds = bi.getPropertyDescriptors();
for (PropertyDescriptor pd : pds)
{
System.out.println(String.format("%s - %s - %s", clazz.getSimpleName(), pd.getName(), Boolean.toString(pd.isBound())));
}
MyBean myBean = new MyBean();
myBean.setText("My name");
myBean.setLocation(new Point(10,10));
myBean.setVisible(true);
}
catch (IntrospectionException e)
{
e.printStackTrace();
}
}
运行此应用程序将输出:
MyBean - UI - true
MyBean - UIClassID - true
MyBean - accessibleContext - true
MyBean - action - true
...
MyBean - vetoableChangeListeners - true
MyBean - visible - true
MyBean - visibleRect - true
MyBean - width - true
MyBean - x - true
MyBean - y - true
**MyBean - 'text' changed**
我的问题:
对于所有 MyBean 属性,打印一行告诉我该属性已绑定,但是,当我创建 MyBean 实例并调用 setText、setLocation 和 setVisible 时,仅在 setText 的情况下打印一行。我的结论是(可能是错误的)如果 setLocation 和 setVisible 被调用,则不会调用firePropertyChange方法,因此不会调用PropertyChangedListener。现在,我认为每个绑定属性在更新时都会调用firePropertyChange方法?显然情况并非如此,或者打印的列表可能是错误的。对此的任何解释将不胜感激。