View Javadoc
1 package junit.quilt.cover.generic; 2 3 /*** 4 * InitVertex 5 * 6 * This is a vertex which is always called 7 * at the begining. 8 */ 9 10 import org.apache.bcel.generic.*; 11 12 public class InitVertex 13 extends BlockVertex 14 { 15 public InitVertex( InstructionList il ) { 16 setInstructionList( il ); 17 } 18 19 public InitVertex() { 20 setInstructionList( new InstructionList( ) ); 21 } 22 23 }

This page was automatically generated by Maven