KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > facelets > tag > jsf > core > ValueChangeListenerImpl


1 package com.sun.facelets.tag.jsf.core;
2
3 import javax.faces.event.AbortProcessingException;
4 import javax.faces.event.ValueChangeEvent;
5 import javax.faces.event.ValueChangeListener;
6
7 public class ValueChangeListenerImpl implements ValueChangeListener {
8
9     public ValueChangeListenerImpl() {
10         super();
11         // TODO Auto-generated constructor stub
12
}
13
14     public void processValueChange(ValueChangeEvent event)
15             throws AbortProcessingException {
16         // TODO Auto-generated method stub
17

18     }
19
20 }
21
Popular Tags