1 package org.rcfaces.core.event;
2
3 import javax.faces.event.AbortProcessingException;
4 import javax.faces.event.FacesListener;
5
6 /**
7 * @author meslin.jb@vedana.com
8 */
9 public interface IExpandListener extends FacesListener {
10
11 void processExpand(ExpandEvent event) throws AbortProcessingException;
12 }