aboutsummaryrefslogtreecommitdiffstats
path: root/make/joal-alextabstract-CustomJavaCode.java
blob: e467fc7936329ee060b78b85e3bd2a773b45b1c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
private static final ALExtProcAddressTable alExtProcAddressTable;

static {
    alExtProcAddressTable = AccessController.doPrivileged(new PrivilegedAction<ALExtProcAddressTable>() {
                                public ALExtProcAddressTable run() {
                                    final ALExtProcAddressTable alExtProcAddressTable = new ALExtProcAddressTable();
                                    if(null==alExtProcAddressTable) {
                                      throw new RuntimeException("Couldn't instantiate ALExtProcAddressTable");
                                    }
                                    alExtProcAddressTable.reset(ALImpl.alDynamicLookupHelper);
                                    return alExtProcAddressTable;
                                } } );
}

public static ALExtProcAddressTable getALExtProcAddressTable() { return alExtProcAddressTable; }