Skip to content

Commit

Permalink
Merge pull request #47 from opalj/fix/javaFrameworkDocumentation
Browse files Browse the repository at this point in the history
Improved documentation for Java Frameworks with Rewriting support
  • Loading branch information
roterEmil authored Dec 2, 2021
2 parents c495f02 + bd41f27 commit 41fb377
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ package br
package reader

/**
* This configuration can be used to read in Java 11 (version 55) class files. All
* standard information (as defined in the Java Virtual Machine Specification)
* is represented. Instructions will be cached.
* This configuration can be used to read in Java 11 (version 55) class files with full
* support for rewriting `invokedynamic` instructions created by the JDK compiler for
* lambda and method reference expressions as well as opportunistic support for rewriting dynamic
* constants. All standard information (as defined in the Java Virtual Machine Specification) is
* represented. Instructions will be cached.
*
* @author Dominik Helm
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ package br
package reader

/**
* This configuration can be used to read in Java 16 (version 60) class files. All
* standard information (as defined in the Java Virtual Machine Specification)
* is represented. Instructions will be cached.
* This configuration can be used to read in Java 16 (version 60) class files with full
* support for rewriting `invokedynamic` instructions created by the JDK compiler for
* lambda and method reference expressions as well as opportunistic support for rewriting dynamic
* constants. All standard information (as defined in the Java Virtual Machine Specification) is
* represented. Instructions will be cached.
*
* @author Dominik Helm
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
/* BSD 2-Clause License - see OPAL/LICENSE for details. */
package org.opalj.br.reader
package org.opalj
package br
package reader

/**
* This configuration can be used to read in Java 17 (version 61) class files. All
* standard information (as defined in the Java Virtual Machine Specification)
* is represented. Instructions will be cached.
* This configuration can be used to read in Java 17 (version 61) class files with full
* support for rewriting `invokedynamic` instructions created by the JDK compiler for
* lambda and method reference expressions as well as opportunistic support for rewriting dynamic
* constants. All standard information (as defined in the Java Virtual Machine Specification) is
* represented. Instructions will be cached.
*
* @author Julius Naeumann
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ package br
package reader

/**
* This configuration can be used to read in Java 9 (version 53) class files. All
* standard information (as defined in the Java Virtual Machine Specification)
* is represented. Instructions will be cached.
* This configuration can be used to read in Java 9 (version 53) class files with full
* support for rewriting `invokedynamic` instructions created by the JDK compiler for
* lambda and method reference expressions. All standard information (as defined in the
* Java Virtual Machine Specification) is represented. Instructions will be cached.
*
* @author Michael Eichberg
*/
Expand Down

0 comments on commit 41fb377

Please sign in to comment.