1 package junit.quilt.cover.generic;
2
3 /***
4 * FinallyVertex
5 *
6 * This vertex can be used to implement a finally clause.
7 */
8
9 import org.apache.bcel.generic.*;
10
11 public class FinallyVertex
12 extends BlockVertex
13 {
14 public FinallyVertex( InstructionList il ) {
15 // il.append( new RET() );
16 setInstructionList( il );
17 }
18
19 public FinallyVertex() {
20 setInstructionList( new InstructionList() );
21 // InstructionList il = new InstructionList( new NOP() );
22 // il.append( new RET() );
23
24 // setInstructionList( il );
25 }
26
27 }
This page was automatically generated by Maven