106107108109110111112
{ return context; } } throw new NoContext(); }
144145146147148149150151152
{ OAInvocationInfo invocationInfo = null; try { invocationInfo = orb.peekInvocationInfo() ; } catch (EmptyStackException e) { throw new NoContext(); } return invocationInfo; }
167168169170171172173174
private void throwNoContextIfNull(Object o) throws NoContext { if ( o == null ) { throw new NoContext(); } }
105106107108109110111