Lines 478-489
Link Here
|
478 |
result.append("\n\t // Max Locals " + maxLocals); |
478 |
result.append("\n\t // Max Locals " + maxLocals); |
479 |
result.append(" , Max Stack " + maxStack); |
479 |
result.append(" , Max Stack " + maxStack); |
480 |
if (exceptionBlocks != null) { |
480 |
if (exceptionBlocks != null) { |
481 |
Enumeration enum = Collections.enumeration(exceptionBlocks); |
481 |
Enumeration myEnum = Collections.enumeration(exceptionBlocks); |
482 |
if (enum.hasMoreElements()) { |
482 |
if (myEnum.hasMoreElements()) { |
483 |
result.append("\n\n\t /**"); |
483 |
result.append("\n\n\t /**"); |
484 |
result.append("\n\t\tFrom To Handler\tClass\n"); |
484 |
result.append("\n\t\tFrom To Handler\tClass\n"); |
485 |
while (enum.hasMoreElements()) { |
485 |
while (myEnum.hasMoreElements()) { |
486 |
JException exc = (JException) enum.nextElement(); |
486 |
JException exc = (JException) myEnum.nextElement(); |
487 |
result.append(exc.toString()); |
487 |
result.append(exc.toString()); |
488 |
} |
488 |
} |
489 |
result.append("\t **/\n"); |
489 |
result.append("\t **/\n"); |