-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
0.2.0 - Renamed some interfaces, removed unnecessary opcode classes.
- Loading branch information
1 parent
dc1eda0
commit 604a829
Showing
42 changed files
with
436 additions
and
1,456 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<classpath> | ||
<classpathentry kind="src" path="src"/> | ||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/> | ||
<classpathentry kind="lib" path="C:/Users/TeamworkGuy2/Documents/Java/Libraries/java/eclipse/jar/ecj-4.4M2.jar"/> | ||
<classpathentry kind="output" path="bin"/> | ||
</classpath> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,25 @@ | ||
ClassLoading | ||
========== | ||
version: 0.1.0 | ||
version: 0.2.0 | ||
|
||
Java class file parsing and manipulation library. | ||
Reference: [Java Virtual Machine Spec](http://docs.oracle.com/javase/specs/jvms/se8/html/index.html) | ||
|
||
###See `twg2.jbcm.main/` | ||
for example code and interactive command line tools. | ||
|
||
####`twg2.jbcm.classFormat` | ||
### `twg2.jbcm.classFormat` | ||
Contains implementation of the [class file format](http://docs.oracle.com/javase/specs/jvms/se8/html/jvms-4.html) | ||
with related attributes and constant pool types. | ||
|
||
####`twg2.jbcm` and `twg2.jbcm.modify` | ||
### `twg2.jbcm` and `twg2.jbcm.modify` | ||
Interfaces and utilities for searching and modifying class files. | ||
|
||
####`twg2.jbcm.opcode` | ||
### `twg2.jbcm.opcode` | ||
Partial implementation of [Java instruction set opcodes](http://docs.oracle.com/javase/specs/jvms/se8/html/jvms-6.html#jvms-6.5). | ||
|
||
####`twg2.jbcm.dynamicModification`, `twg2.jbcm.parserExamples` | ||
### `twg2.jbcm.dynamicModification` and `twg2.jbcm.parserExamples` | ||
Classes used by the example and test packages. | ||
|
||
####`twg2.jbcm.runtimeLoading` | ||
### `twg2.jbcm.runtimeLoading` | ||
Runtime class loading. | ||
|
||
####`twg2.jbcm.main` | ||
### `twg2.jbcm.main` | ||
Example console apps. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.