private static final ALCProcAddressTable alcProcAddressTable; static { alcProcAddressTable = AccessController.doPrivileged(new PrivilegedAction() { public ALCProcAddressTable run() { final ALCProcAddressTable alcProcAddressTable = new ALCProcAddressTable(); if(null==alcProcAddressTable) { throw new RuntimeException("Couldn't instantiate ALCProcAddressTable"); } alcProcAddressTable.reset(ALImpl.alDynamicLookupHelper); return alcProcAddressTable; } } ); } public static ALCProcAddressTable getALCProcAddressTable() { return alcProcAddressTable; }