1 package net.suberic.util.gui.propedit; 2 3 6 public interface PropertyEditorListener { 7 8 12 public void propertyChanging(PropertyEditorUI source, String property, String newValue) throws PropertyValueVetoException; 13 14 17 public void propertyChanged(PropertyEditorUI source, String property, String newValue); 18 19 23 public void propertyCommitting(PropertyEditorUI source, String property, String newValue) throws PropertyValueVetoException; 24 25 28 public void propertyInitialized(PropertyEditorUI source, String property, String newValue); 29 } 30 | Popular Tags |