View Javadoc

1   package com.loribel.commons.abstraction;
2   
3   /***
4    * Interface for Object that can be enabled / disabled.
5    *
6    * @author Grégory Borelli
7    */
8   public interface GB_Enabled
9   {
10      /***
11       * Returns true if enabled.
12       *
13       * @return boolean
14       */
15      boolean isEnabled();
16  
17  }