source: trunk/gcc/libjava/testsuite/libjava.loader/MyLoader.java

Last change on this file was 1389, checked in by bird, 21 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 
1import java.net.*;
2
3public 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.