1 /***
2 * ClassLoader
3 *
4 * This class instruments code according
5 * to the Thomas Ball 1996 Path Profiling
6 * algorithm.
7 */
8
9 package junit.quilt.cover.none;
10
11 import java.util.Iterator;
12
13 import java.net.URL;
14
15 import junit.quilt.framework.*;
16 import junit.quilt.cover.generic.*;
17 import junit.quilt.exception.*;
18
19 import org.apache.bcel.*;
20 import org.apache.bcel.generic.*;
21 import org.apache.bcel.classfile.*;
22
23 import org.apache.commons.graph.*;
24 public class NoneClassLoader
25 extends MethInstClassLoader
26 {
27 private NoneRegistry registry = null;
28
29 publicNoneClassLoader( String packages[],/index.html"> NoneClassLoader( String packages[],
30 URL path[],
31 ClassLoader parent,
32 NoneRegistry registry) {
33 super( packages, path, parent );
34 this.registry = registry;
35 }
36
37 public void instrumentMethod( InstContext context,
38 ControlFlowGraph graph )
39 throws QuiltException
40 {
41 }
42 }
This page was automatically generated by Maven