1 package com.loribel.commons.abstraction; 2 3 /*** 4 * Interface for action before exit. 5 * 6 * @author Grégory Borelli 7 */ 8 public interface GB_ActionBeforeExit 9 { 10 //boolean acceptExit(); 11 12 void doBeforeExit(); 13 }