Searched refs:methodIndexInStack (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/istack/internal/logging/
H A DLogger.java439 * Method returns the name of the method that is on the {@code methodIndexInStack}
442 * @param methodIndexInStack index to the call stack to get the method name for.
443 * @return the name of the method that is on the {@code methodIndexInStack}
446 private static String getStackMethodName(final int methodIndexInStack) { argument
450 if (stack.length > methodIndexInStack + 1) {
451 methodName = stack[methodIndexInStack].getMethodName();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/privateutil/
H A DPolicyUtils.java57 * Method returns the name of the method that is on the {@code methodIndexInStack}
60 * @param methodIndexInStack index to the call stack to get the method name for.
61 * @return the name of the method that is on the {@code methodIndexInStack}
64 public static String getStackMethodName(final int methodIndexInStack) { argument
68 if (stack.length > methodIndexInStack + 1) {
69 methodName = stack[methodIndexInStack].getMethodName();

Completed in 32 milliseconds