1 23 package com.sun.enterprise.tools.jsfext.event; 24 25 import java.util.EventObject ; 26 27 import javax.faces.component.UIComponent; 28 29 30 36 public class EventObjectBase extends EventObject implements UIComponentHolder { 37 38 41 private EventObjectBase() { 42 super(null); 43 } 44 45 52 protected EventObjectBase(UIComponent component) { 53 super(component); 54 } 55 56 62 public UIComponent getUIComponent() { 63 return (UIComponent) getSource(); 64 } 65 } 66 | Popular Tags |