1 package com.loribel.commons.abstraction;
2
3 /***
4 * Interface for Object that can execute itself.
5 *
6 * @author Grégory Borelli
7 */
8 public interface GB_Executable
9 {
10 /***
11 * Method execute.
12 */
13 void execute();
14
15 }