1 package org.weda.action.impl; 2 3 import org.weda.action.ActionParameter; 4 import org.weda.action.Parameter; 5 import org.weda.property.impl.PropertyDescriptorImpl; 6 7 /** 8 * 9 * @author tim 10 */ 11 public class ActionParameterImpl 12 extends PropertyDescriptorImpl implements ActionParameter 13 { 14 private Integer setterId; 15 private Integer getterId; 16 private Parameter.Direction direction; 17 18 public Integer getSetterId() { 19 return setterId; 20 } 21 22 public void setSetterId(Integer setterId) { 23 this.setterId = setterId; 24 } 25 26 public Integer getGetterId() { 27 return getterId; 28 } 29 30 public void setGetterId(Integer getterId) { 31 this.getterId = getterId; 32 } 33 34 public Parameter.Direction getDirection() { 35 return direction; 36 } 37 38 public void setDirection(Parameter.Direction direction) { 39 this.direction = direction; 40 } 41 42 }