1 package org.weda.action; 2 3 import org.weda.property.PropertyDescriptor; 4 import org.weda.action.Parameter.Direction; 5 6 /**Цель: хранение информации о параметре действия. 7 * @see {@link Action} 8 * 9 * @author tim 10 */ 11 public interface ActionParameter extends PropertyDescriptor { 12 /**Метод возвращет направление воздействия на параметр. 13 */ 14 public Direction getDirection(); 15 /**Метод возвращает идентификатор метода устанавливающего значние свойства. 16 *@see PropertyValue 17 */ 18 public Integer getSetterId(); 19 /**Метод возвращает идентификатор метода получающего значние свойства. 20 *@see PropertyValue 21 */ 22 public Integer getGetterId(); 23 }