View Javadoc
1   /*
2    * This library is free software; you can redistribute it and/or
3    * modify it under the terms of the GNU Lesser General Public
4    * License as published by the Free Software Foundation; either
5    * version 2.1 of the License, or (at your option) any later version.
6    * 
7    * This library is distributed in the hope that it will be useful,
8    * but WITHOUT ANY WARRANTY; without even the implied warranty of
9    * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10   * Lesser General Public License for more details.
11   * 
12   * Full GNU LGPL license terms : http://www.gnu.org/copyleft/lesser.txt
13   * 
14   * Project : iky-container
15   * Package : net.wmind.commons
16   * Author : mchaplin@users.sourceforge.net
17   *
18   */
19  package net.mchaplin.commons;
20  
21  /***
22   * Singleton pattern interface
23   * 
24   * @author mchaplin@wmind.net
25   * 
26   * $Header: 
27   * $Revision: 
28   * $Date:
29   */
30  public interface SingletonI {
31  	
32  	SingletonI getInstance();
33  
34  }