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