Dec. 10th, 2015
Java at extreme
Dec. 10th, 2015 02:50 pm/** * Collection of utility methods to facilitate implementing getInstance() * methods in the JCA/JCE/JSSE/... framework. * * @author Andreas Sterbenz * @since 1.5 */ public class GetInstance { private GetInstance() { // empty } /** * Static inner class representing a newly created instance. */ public static final class Instance { ...