Home | History | Annotate | Download | only in util

Lines Matching defs:caller

33      * typically involves choosing between the caller's current, thread context,
39 * @param caller [null input eliminates the caller's current classloader
42 * @return classloader to be used by the caller ['null' indicates the
45 public static synchronized ClassLoader getClassLoader (final Class caller)
47 final ClassLoadContext ctx = new ClassLoadContext (caller);
55 * typically involves choosing between the caller's current, thread context,
59 * This method uses its own caller to set the call context. To be able to
64 * @return classloader to be used by the caller ['null' indicates the
69 final Class caller = getCallerClass (1); // 'caller' can be set to null
70 final ClassLoadContext ctx = new ClassLoadContext (caller);
77 * corresponds to the immediate caller, offset 1 corresponds to its caller,
148 final Class caller = ctx.getCallerClass ();
153 if (caller == null)
157 final ClassLoader callerLoader = caller.getClassLoader ();