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.6KB

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