1 15 package org.apache.tapestry.engine; 16 17 import org.apache.hivemind.util.Defense; 18 import org.apache.tapestry.IComponent; 19 20 26 public class ActionServiceParameter 27 { 28 29 private IComponent _component; 30 31 private String _actionId; 32 33 public ActionServiceParameter(IComponent component, String actionId) 34 { 35 Defense.notNull(component, "component"); 36 Defense.notNull(actionId, "actionId"); 37 38 _component = component; 39 _actionId = actionId; 40 } 41 42 public String getActionId() 43 { 44 return _actionId; 45 } 46 47 public IComponent getComponent() 48 { 49 return _component; 50 } 51 } | Popular Tags |