diff options
author | chiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3> | 2007-05-24 07:46:57 +0000 |
---|---|---|
committer | chiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3> | 2007-05-24 07:46:57 +0000 |
commit | fef3cedb4bd296532f9941b2847c9559d29eef4d (patch) | |
tree | 5a2f8e671ac63a92d629f496fefb893bf2d9cebf /tutorial | |
parent | c2d6bdf673d0fde9b947ae23094cd76493d5ca88 (diff) | |
download | javassist-fef3cedb4bd296532f9941b2847c9559d29eef4d.tar.gz javassist-fef3cedb4bd296532f9941b2847c9559d29eef4d.zip |
fixed a but in javassist.bytecode.stackmap etc.
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@372 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
Diffstat (limited to 'tutorial')
-rw-r--r-- | tutorial/tutorial.html | 2 | ||||
-rw-r--r-- | tutorial/tutorial2.html | 2 | ||||
-rw-r--r-- | tutorial/tutorial3.html | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/tutorial/tutorial.html b/tutorial/tutorial.html index 8fe123cc..097d695a 100644 --- a/tutorial/tutorial.html +++ b/tutorial/tutorial.html @@ -1086,6 +1086,6 @@ For more information, see the API documentation of <hr> Java(TM) is a trademark of Sun Microsystems, Inc.<br> -Copyright (C) 2000-2005 by Shigeru Chiba, All rights reserved. +Copyright (C) 2000-2007 by Shigeru Chiba, All rights reserved. </body> </html> diff --git a/tutorial/tutorial2.html b/tutorial/tutorial2.html index 484e85ec..833d1227 100644 --- a/tutorial/tutorial2.html +++ b/tutorial/tutorial2.html @@ -1623,6 +1623,6 @@ write: <hr> Java(TM) is a trademark of Sun Microsystems, Inc.<br> -Copyright (C) 2000-2005 by Shigeru Chiba, All rights reserved. +Copyright (C) 2000-2007 by Shigeru Chiba, All rights reserved. </body> </html> diff --git a/tutorial/tutorial3.html b/tutorial/tutorial3.html index 1c4afe73..418ef719 100644 --- a/tutorial/tutorial3.html +++ b/tutorial/tutorial3.html @@ -236,7 +236,7 @@ transformation. <p>The generics of Java is implemented by the erasure technique. After compilation, all type parameters are dropped off. For -example, suppose that your source code declare a parameterized +example, suppose that your source code declares a parameterized type <code>Vector<String></code>: <ul><pre> @@ -273,7 +273,7 @@ public interface Getter<T> { </pre></ul> <p>Then the interface you really have to add is <code>Getter</code> -(the type parameters <code><T><code> drops off) +(the type parameters <code><T></code> drops off) and the method you also have to add to the <code>Wrapper</code> class is this simple one: @@ -289,6 +289,6 @@ public Object get() { return value; } <hr> Java(TM) is a trademark of Sun Microsystems, Inc.<br> -Copyright (C) 2000-2005 by Shigeru Chiba, All rights reserved. +Copyright (C) 2000-2007 by Shigeru Chiba, All rights reserved. </body> </html> |