You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.html 622B

12345678910111213141516171819
  1. <html>
  2. <body>
  3. Bytecode Analysis API.
  4. <p>This package provides an API for performing data-flow analysis on a method's bytecode.
  5. This allows the user to determine the type state of the stack and local variable table
  6. at the start of every instruction. In addition this API can be used to validate
  7. bytecode, find dead bytecode, and identify unnecessary checkcasts.
  8. <p>The users of this package must know the specifications of
  9. class file and Java bytecode. For more details, read this book:
  10. <ul>Tim Lindholm and Frank Yellin,
  11. "The Java Virtual Machine Specification 2nd Ed.",
  12. Addison-Wesley, 1999.
  13. </ul>
  14. </body>
  15. </html>