1 16 package org.apache.cocoon.woody.event; 17 18 import org.apache.cocoon.woody.formmodel.Form; 19 20 26 public class ProcessingPhaseEvent extends WidgetEvent { 27 28 private ProcessingPhase phase; 29 30 public ProcessingPhaseEvent(Form form, ProcessingPhase phase) { 31 super(form); 32 this.phase = phase; 33 } 34 35 public Form getForm() { 36 return (Form)this.getSource(); 37 } 38 39 public ProcessingPhase getPhase() { 40 return this.phase; 41 } 42 43 } 44 | Popular Tags |