1 /*
2 * $Id: ClientValueChangeEvent.java,v 1.1 2010/01/27 14:55:37 oeuillot Exp $
3 */
4 package org.rcfaces.core.event;
5
6 import javax.faces.component.UIComponent;
7 import javax.faces.event.ValueChangeEvent;
8
9 /**
10 *
11 * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
12 * @version $Revision: 1.1 $ $Date: 2010/01/27 14:55:37 $
13 */
14 public class ClientValueChangeEvent extends ValueChangeEvent {
15
16 private static final long serialVersionUID = 3196578500483059239L;
17
18 public ClientValueChangeEvent(UIComponent component, Object oldValue,
19 Object newValue) {
20
21 super(component, oldValue, newValue);
22 }
23
24 }