KickJava   Java API By Example, From Geeks To Geeks.

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


1 package com.sun.facelets.tag.jsf.core;
2
3 import javax.faces.event.AbortProcessingException;
4 import javax.faces.event.ActionEvent;
5 import javax.faces.event.ActionListener;
6
7 public class ActionListenerImpl implements ActionListener {
8     
9     public ActionListenerImpl() {
10     }
11
12     public void processAction(ActionEvent e) throws AbortProcessingException {
13
14     }
15 }
16
Popular Tags