Browse Source

renamed javassist.tool to javassist.tools


git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@229 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
tags/rel_3_17_1_ga
chiba 18 years ago
parent
commit
a52aa92705

+ 6
- 0
Readme.html View File

@@ -296,6 +296,12 @@ see javassist.Dump.
moved to the sample directory.
</ul>

<p>- version 3.1

<ul>
<li>javassist.tool package was renamed to javassist.tools.
</ul>

<p>- version 3.1 RC2 in September 7, 2005

<ul>

+ 1
- 1
sample/hotswap/Test.java View File

@@ -1,5 +1,5 @@
import java.io.*;
import javassist.tool.HotSwapper;
import javassist.tools.HotSwapper;

public class Test {
public static void main(String[] args) throws Exception {

src/main/javassist/tool/Dump.java → src/main/javassist/tools/Dump.java View File

@@ -13,7 +13,7 @@
* License.
*/

package javassist.tool;
package javassist.tools;

import java.io.*;
import javassist.bytecode.ClassFile;
@@ -25,7 +25,7 @@ import javassist.bytecode.ClassFileWriter;
* the class file is broken.
*
* <p>For example,
* <ul><pre>% java javassist.tool.Dump foo.class</pre></ul>
* <ul><pre>% java javassist.tools.Dump foo.class</pre></ul>
*
* <p>prints the contents of the constant pool and the list of methods
* and fields.

src/main/javassist/tool/HotSwapper.java → src/main/javassist/tools/HotSwapper.java View File

@@ -13,7 +13,7 @@
* License.
*/

package javassist.tool;
package javassist.tools;

import com.sun.jdi.*;
import com.sun.jdi.connect.*;
@@ -81,7 +81,7 @@ public class HotSwapper {
private Trigger trigger;

private static final String HOST_NAME = "localhost";
private static final String TRIGGER_NAME = "javassist.tool.Trigger";
private static final String TRIGGER_NAME = "javassist.tools.Trigger";

/**
* Connects to the JVM.

src/main/javassist/tool/package.html → src/main/javassist/tools/package.html View File


+ 1
- 1
tutorial/tutorial.html View File

@@ -1074,7 +1074,7 @@ They have the same set of methods and fields.

<p>Javassist provides a convenient class for reloading a class at runtime.
For more information, see the API documentation of
<code>javassist.tool.HotSwapper</code>.
<code>javassist.tools.HotSwapper</code>.

<p><br>


Loading…
Cancel
Save