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.

README.md 1.4KB

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
12345678910111213141516171819202122232425262728293031323334353637383940
  1. Java bytecode engineering toolkit
  2. ### [Javassist version 3](http://www.javassist.org)
  3. Copyright (C) 1999-2019 by Shigeru Chiba, All rights reserved.
  4. Javassist (JAVA programming ASSISTant) makes Java bytecode manipulation
  5. simple. It is a class library for editing bytecodes in Java; it enables Java
  6. programs to define a new class at runtime and to modify a class file when the
  7. JVM loads it. Unlike other similar bytecode editors, Javassist provides two
  8. levels of API: source level and bytecode level. If the users use the source-
  9. level API, they can edit a class file without knowledge of the specifications
  10. of the Java bytecode. The whole API is designed with only the vocabulary of
  11. the Java language. You can even specify inserted bytecode in the form of
  12. source text; Javassist compiles it on the fly. On the other hand, the
  13. bytecode-level API allows the users to directly edit a class file as other
  14. editors.
  15. This software is distributed under the Mozilla Public License Version 1.1,
  16. the GNU Lesser General Public License Version 2.1 or later, or
  17. the Apache License Version 2.0.
  18. #### Files
  19. * [Readme.html](Readme.html)
  20. Readme file (a longer version of this file).
  21. * [License.html](License.html)
  22. License file
  23. * [tutorial/tutorial.html](tutorial/tutorial.html)
  24. Tutorial
  25. * ./javassist.jar
  26. The Javassist jar file (class files)
  27. * ./src/main
  28. The source files
  29. * [html/index.html](html/index.html)
  30. The top page of the Javassist API document.