1 /* 2 * PropertySetOperationListener.java 3 * Created on 22 Май 2006 г., 0:17 4 */ 5 6 package org.weda.property; 7 8 /** 9 * @author Mikhail Titov 10 */ 11 public interface PropertySetOperationListener { 12 public PropertyListenerResult beforeSet( 13 Object propOwner, String propertyName, Object propValue) 14 throws PropertyListenerException; 15 public void afterSet( 16 Object propOwner, String propertyName, Object propValue) 17 throws PropertyListenerException; 18 }