Searched defs:oldContext (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DThreadContext.java42 * ThreadContext oldContext = ThreadContext.push(myKey, myObject);
47 * ThreadContext.restore(oldContext);
216 ThreadContext oldContext = getContext();
217 if (oldContext == null)
218 oldContext = new ThreadContext(null, null, null); // make sentinel
219 ThreadContext newContext = new ThreadContext(oldContext, key, value);
221 return oldContext;
239 * @param oldContext the state to return. This is usually the return
242 * @exception NullPointerException if <code>oldContext</code> is null.
243 * @exception IllegalArgumentException if <code>oldContext</cod
247 restore(ThreadContext oldContext) argument
[all...]

Completed in 37 milliseconds