📄 propertyeditorlistener.java
字号:
package net.suberic.util.gui.propedit;/** * This listens to a PropertyEditorUI and reacts to changes. */public interface PropertyEditorListener { /** * Called when a property is about to change. If the value is not ok * with the listener, a PropertyValueVetoException should be thrown. */ public void propertyChanging(PropertyEditorUI source, String property, String newValue) throws PropertyValueVetoException; /** * Called after a property changes. */ public void propertyChanged(PropertyEditorUI source, String property, String newValue); /** * Called when a property is about to change. If the value is not ok * with the listener, a PropertyValueVetoException should be thrown. */ public void propertyCommitting(PropertyEditorUI source, String property, String newValue) throws PropertyValueVetoException; /** * Called when an editor is initialized with a set value. */ public void propertyInitialized(PropertyEditorUI source, String property, String newValue);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -