View Javadoc

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 IPreSelectionListener extends FacesListener {
10  
11      void processPreSelection(PreSelectionEvent event) throws AbortProcessingException;
12  }