1 16 package org.apache.cocoon.portal.event.impl; 17 18 import org.apache.cocoon.portal.event.ActionEvent; 19 20 28 public abstract class AbstractActionEvent implements ActionEvent { 29 30 protected Object target; 31 32 public AbstractActionEvent(Object target) { 33 this.target = target; 34 } 35 36 39 public Object getTarget() { 40 return this.target; 41 } 42 43 } 44 | Popular Tags |