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 3.0KB

10 lat temu
10 lat temu
10 lat temu
10 lat temu
10 lat temu
10 lat temu
10 lat temu
10 lat temu
10 lat temu
10 lat temu
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. * [Changes.md](Changes.md)
  23. Release notes.
  24. * [License.html](License.html)
  25. License file.
  26. * [tutorial/tutorial.html](https://www.javassist.org/tutorial/tutorial.html)
  27. Tutorial.
  28. * ./javassist.jar
  29. The Javassist jar file (class files).
  30. * ./src/main
  31. The source files
  32. * [Examples.md](Examples.md)
  33. How to run examples.
  34. * [html/index.html](https://www.javassist.org/html/index.html)
  35. The top page of the Javassist API document.
  36. #### Hints
  37. To print the version number, type this command:
  38. ```
  39. java -jar javassist.jar
  40. ```
  41. #### Acknowledgments
  42. The development of this software is sponsored in part by the PRESTO
  43. and CREST programs of [Japan
  44. Science and Technology Corporation](http://www.jst.go.jp/).
  45. I'd like to thank Michiaki Tatsubori, Johan Cloetens,
  46. Philip Tomlinson, Alex Villazon, Pascal Rapicault, Dan HE, Eric Tanter,
  47. Michael Haupt, Toshiyuki Sasaki, Renaud Pawlak, Luc Bourlier,
  48. Eric Bui, Lewis Stiller, Susumu Yamazaki, Rodrigo Teruo Tomita,
  49. Marc Segura-Devillechaise, Jan Baudisch, Julien Blass, Yoshiki Sato,
  50. Fabian Crabus, Bo Norregaard Jorgensen, Bob Lee, Bill Burke,
  51. Remy Sanlaville, Muga Nishizawa, Alexey Loubyansky, Saori Oki,
  52. Andreas Salathe, Dante Torres estrada, S. Pam, Nuno Santos,
  53. Denis Taye, Colin Sampaleanu, Robert Bialek, Asato Shimotaki,
  54. Howard Lewis Ship, Richard Jones, Marjan Sterjev,
  55. Bruce McDonald, Mark Brennan, Vlad Skarzhevskyy,
  56. Brett Randall, Tsuyoshi Murakami, Nathan Meyers, Yoshiyuki Usui
  57. Yutaka Sunaga, Arjan van der Meer, Bruce Eckel, Guillaume Pothier,
  58. Kumar Matcha, Andreas Salathe, Renat Zubairov, Armin Haaf,
  59. Emmanuel Bernard, Jason T. Greene
  60. and all other contributors for their contributions.
  61. by [Shigeru Chiba](https://github.com/chibash)