2014-08-11 21:43:08 +03:00
|
|
|
package com.iluwatar;
|
|
|
|
|
2014-08-31 08:42:01 +03:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Singleton class.
|
2014-10-08 13:42:12 +01:00
|
|
|
*
|
2014-08-31 08:42:01 +03:00
|
|
|
*/
|
2014-08-11 21:43:08 +03:00
|
|
|
public class IvoryTower {
|
|
|
|
|
2014-09-07 21:21:24 +01:00
|
|
|
private static IvoryTower instance = new IvoryTower();
|
2014-10-08 13:42:12 +01:00
|
|
|
|
|
|
|
private IvoryTower() {
|
|
|
|
}
|
2014-08-11 21:43:08 +03:00
|
|
|
|
|
|
|
public static IvoryTower getInstance() {
|
|
|
|
return instance;
|
|
|
|
}
|
|
|
|
}
|