Uses of Class
java.beans.PropertyVetoException
-
Packages that use PropertyVetoException 软件包 描述 java.awt 包含用于创建用户界面和绘制图形和图像的所有类。java.beans 包含与开发 bean相关的类 - 基于JavaBeans架构的组件。java.beans.beancontext 提供与bean上下文相关的类和接口。javax.swing 提供一套“轻量级”(全Java语言)组件,尽可能地在所有平台上工作。 -
-
Uses of PropertyVetoException in java.awt
Methods in java.awt that throw PropertyVetoException Modifier and Type 方法 描述 protected void
KeyboardFocusManager. fireVetoableChange(String propertyName, Object oldValue, Object newValue)
触发PropertyChangeEvent以响应否决权属性的更改。 -
Uses of PropertyVetoException in java.beans
Methods in java.beans that throw PropertyVetoException Modifier and Type 方法 描述 void
VetoableChangeSupport. fireVetoableChange(PropertyChangeEvent event)
将属性更改事件触发到已注册的跟踪器,以跟踪所有属性的更新或具有指定名称的属性。void
VetoableChangeSupport. fireVetoableChange(String propertyName, boolean oldValue, boolean newValue)
向已注册的监听器报告布尔约束属性更新,以跟踪所有属性的更新或具有指定名称的属性。void
VetoableChangeSupport. fireVetoableChange(String propertyName, int oldValue, int newValue)
向已注册的监听器报告整数约束属性更新,以跟踪所有属性的更新或具有指定名称的属性。void
VetoableChangeSupport. fireVetoableChange(String propertyName, Object oldValue, Object newValue)
向已注册的监听器报告受限属性更新,以跟踪所有属性的更新或具有指定名称的属性。void
VetoableChangeListener. vetoableChange(PropertyChangeEvent evt)
当更改约束属性时调用此方法。void
VetoableChangeListenerProxy. vetoableChange(PropertyChangeEvent event)
将属性更改事件转发给侦听器代理。 -
Uses of PropertyVetoException in java.beans.beancontext
Methods in java.beans.beancontext that throw PropertyVetoException Modifier and Type 方法 描述 void
BeanContextChildSupport. fireVetoableChange(String name, Object oldValue, Object newValue)
向任何已注册的听众报告否决权属性更新。void
BeanContextChild. setBeanContext(BeanContext bc)
实现此接口的对象将触发java.beans.PropertyChangeEvent,其参数为:propertyName“beanContext”,oldValue(以前的嵌套BeanContext
实例或null
),newValue(当前嵌套的BeanContext
实例或null
)。void
BeanContextChildSupport. setBeanContext(BeanContext bc)
设置BeanContext
为这个BeanContextChildSupport
。void
BeanContextSupport. setLocale(Locale newLocale)
设置此BeanContext的区域设置。void
BeanContextSupport. vetoableChange(PropertyChangeEvent pce)
子类可以包围以监视否决权子变化。 -
Uses of PropertyVetoException in javax.swing
Methods in javax.swing that throw PropertyVetoException Modifier and Type 方法 描述 protected void
JComponent. fireVetoableChange(String propertyName, Object oldValue, Object newValue)
支持报告受限的属性更改。void
JInternalFrame. setClosed(boolean b)
如果参数为true
则关闭此内部框架。void
JInternalFrame. setIcon(boolean b)
如果外观和感觉支持图标化,则可以对该内部框架进行图标化或去图标化。void
JInternalFrame. setMaximum(boolean b)
最大化和恢复这个内部框架。void
JInternalFrame. setSelected(boolean selected)
如果显示内部框架,请选择或取消选择。
-