232425262728293031
* * @return a BrowserFactory singleton instance */ public static BrowserFactory getInstance() { if (instance == null) { instance = new BrowserFactoryImpl(); } return instance; }