1 16 package org.apache.cocoon.woody.event; 17 18 import org.apache.cocoon.woody.formmodel.Widget; 19 20 26 public class ActionEvent extends WidgetEvent { 27 String actionCommand; 28 29 public ActionEvent(Widget source, String actionCommand) { 30 super(source); 31 this.actionCommand = actionCommand; 32 } 33 34 public String getActionCommand() { 35 return this.actionCommand; 36 } 37 } 38 | Popular Tags |