1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
Source: javassist
Section: java
Priority: optional
Maintainer: Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org>
Uploaders:
Varun Hiremath <varun@debian.org>,
Torsten Werner <twerner@debian.org>
Build-Depends:
debhelper-compat (= 12),
default-jdk,
junit4,
libmaven-bundle-plugin-java,
libmaven-javadoc-plugin-java,
maven-debian-helper (>= 2.1)
Standards-Version: 4.5.0
Vcs-Git: https://salsa.debian.org/java-team/javassist.git
Vcs-Browser: https://salsa.debian.org/java-team/javassist
Homepage: http://jboss-javassist.github.io/javassist/
Package: libjavassist-java
Architecture: all
Depends: ${maven:Depends}, ${misc:Depends}
Suggests: ${maven:OptionalDepends}
Description: library for editing bytecodes in Java
This library makes Java bytecode manipulation simple. It enables Java
programs to define a new class at runtime and to modify a class file
when the JVM loads it.
.
Unlike other bytecode editors, Javassist provides two levels of API:
source level and bytecode level. With the source-level API, users can
edit a class file without knowledge of the specifications of the Java
bytecode. You can even specify inserted bytecode in the form of source
text; Javassist compiles it on the fly. On the other hand, the
bytecode-level API allows the users to directly edit a class file as
other editors.
Package: libjavassist-java-doc
Section: doc
Architecture: all
Depends:
${misc:Depends}
Suggests:
libjavassist-java
Description: library for editing bytecodes in Java -- documentation
This library makes Java bytecode manipulation simple. It enables Java
programs to define a new class at runtime and to modify a class file
when the JVM loads it.
.
Unlike other bytecode editors, Javassist provides two levels of API:
source level and bytecode level. With the source-level API, users can
edit a class file without knowledge of the specifications of the Java
bytecode. You can even specify inserted bytecode in the form of source
text; Javassist compiles it on the fly. On the other hand, the
bytecode-level API allows the users to directly edit a class file as
other editors.
.
This package includes the documentation.
|