View Javadoc

1   package com.loribel.commons.abstraction;
2   
3   /***
4    * Interface for Launcher.
5    *
6    * @author Grégory Borelli
7    */
8   public interface GB_Launcher
9           extends
10              GB_LabelIconOwner
11  {
12      void start();
13  
14      void initialize();
15  
16  }