554555556557558559560561562563564
} } public ActivityHierarchy currentActivity () throws SystemException { ActivityImple curr = current(); if (curr != null) return new ActivityHierarchyImple(curr); else return null;
565566567568569570571572573574575
} public final ActivityImple current () { Stack hier = (Stack) _threadAxData.get(); ActivityImple currentActivity = null; if (hier != null) { try {
598599600601602603604605606607608
} private final ActivityImple pop () { Stack hier = (Stack) _threadAxData.get(); ActivityImple currentActivity = null; if (hier != null) { try {
620621622623624625626627628629630
} private final ActivityImple purge () { Stack hier = (Stack) _threadAxData.get(); ActivityImple currentActivity = null; if (hier != null) { _threadAxData.set(null) ; try