aboutsummaryrefslogtreecommitdiff
path: root/src/site/xdoc
diff options
context:
space:
mode:
authorEmmanuel Bourg <ebourg@apache.org>2015-02-19 17:25:03 +0000
committerEmmanuel Bourg <ebourg@apache.org>2015-02-19 17:25:03 +0000
commit2446fb88daee5e8e9973b22fd5a6981b2d041541 (patch)
tree459b4c79f61e608933b842b339ed0d79fc132d9f /src/site/xdoc
parentfc5fd06047bf751ec1a2ccd37c3efbd7f353cd1c (diff)
downloadapache-commons-bcel-2446fb88daee5e8e9973b22fd5a6981b2d041541.tar.gz
Updated the links to the JVM specification
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/bcel/trunk@1660948 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/site/xdoc')
-rw-r--r--src/site/xdoc/manual.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/site/xdoc/manual.xml b/src/site/xdoc/manual.xml
index a1f1045b..21373574 100644
--- a/src/site/xdoc/manual.xml
+++ b/src/site/xdoc/manual.xml
@@ -122,7 +122,7 @@
represented by a single class file containing class related data
and byte code instructions. These files are loaded dynamically
into an interpreter (<a
- href="http://java.sun.com/docs/books/vmspec/index.html">Java
+ href="http://docs.oracle.com/javase/specs/">Java
Virtual Machine</a>, aka. JVM) and executed.
</p>
@@ -165,7 +165,7 @@
covering the details that are necessary for understanding the rest
of this paper. The format of class files and the byte code
instruction set are described in more detail in the <a
- href="http://java.sun.com/docs/books/vmspec/index.html">Java
+ href="http://docs.oracle.com/javase/specs/">Java
Virtual Machine Specification</a>. Especially, we will not deal
with the security constraints that the Java Virtual Machine has to
check at run-time, i.e. the byte code verifier.
@@ -365,7 +365,7 @@
<p>
We will not list all byte code instructions here, since these are
explained in detail in the <a
- href="http://java.sun.com/docs/books/vmspec/index.html">JVM
+ href="http://docs.oracle.com/javase/specs/">JVM
specification</a>. The opcode names are mostly self-explaining,
so understanding the following code examples should be fairly
intuitive.
@@ -624,7 +624,7 @@
<tt>org.apache.bcel.classfile</tt> and closely represents class
files. All of the binary components and data structures declared
in the <a
- href="http://java.sun.com/docs/books/vmspec/index.html">JVM
+ href="http://docs.oracle.com/javase/specs/">JVM
specification</a> and described in section <a
href="#2 The Java Virtual Machine">2</a> are mapped to classes.