1 /* 2 * PropertyOperation.java 3 * Created on 21 Май 2006 г., 21:31 4 */ 5 6 package org.weda.property; 7 8 import java.lang.reflect.Method; 9 10 /** 11 * @author Mikhail Titov 12 */ 13 public interface PropertyOperation<L> { 14 public Object invoke(Object obj, Object propValue) 15 throws PropertyOperationException; 16 public Method getMethod(); 17 public void addListener(L listener); 18 public void removeListener(L listener); 19 } 20