|
Last change
on this file since 1389 was 1389, checked in by bird, 22 years ago |
|
Initial revision
|
-
Property cvs2svn:cvs-rev
set to
1.1
-
Property svn:eol-style
set to
native
-
Property svn:executable
set to
*
|
|
File size:
212 bytes
|
| Line | |
|---|
| 1 | import java.net.*;
|
|---|
| 2 |
|
|---|
| 3 | public class MyLoader extends URLClassLoader
|
|---|
| 4 | {
|
|---|
| 5 | public MyLoader (URL urls[])
|
|---|
| 6 | {
|
|---|
| 7 | super (urls);
|
|---|
| 8 | }
|
|---|
| 9 |
|
|---|
| 10 | public MyLoader (URL urls[], ClassLoader parent)
|
|---|
| 11 | {
|
|---|
| 12 | super (urls, parent);
|
|---|
| 13 | }
|
|---|
| 14 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.