View Javadoc

1   package com.loribel.commons.abstraction;
2   
3   import com.loribel.commons.exception.*;
4   
5   /***
6    * Owner.
7    * 
8    * @author Grégory Borelli
9    */
10  public interface GB_ObjectActionReportOwner
11  {
12  
13      GB_ObjectActionReport getAction(
14              boolean a_useSimulation)
15          throws GB_ConfigException;
16  
17      boolean isSimulationAvailable();
18  
19  }