| | |
| | | |
| | | long startTime = reader.readInteger(); |
| | | long stopTime = reader.readInteger(); |
| | | totalDuration += (stopTime - startTime); |
| | | totalDuration += stopTime - startTime; |
| | | reader.readEndSequence(); |
| | | |
| | | |
| | |
| | | String highlightClassAndMethod) |
| | | { |
| | | int numFrames = stack.getNumFrames(); |
| | | for (int i=(numFrames-1); i >= 0; i--) |
| | | for (int i=numFrames-1; i >= 0; i--) |
| | | { |
| | | html.append("<BR> "); |
| | | |
| | |
| | | String methodName = stack.getMethodName(i); |
| | | int lineNumber = stack.getLineNumber(i); |
| | | |
| | | String safeMethod = |
| | | (methodName.equals("<init>") ? "<init>" : methodName); |
| | | String safeMethod = methodName.equals("<init>") ? "<init>" : methodName; |
| | | |
| | | String classAndMethod = className + "." + methodName; |
| | | if (classAndMethod.equals(highlightClassAndMethod)) |