1 17 package org.apache.bcel.generic; 18 19 27 public class IF_ICMPLE extends IfInstruction { 28 29 33 IF_ICMPLE() { 34 } 35 36 37 public IF_ICMPLE(InstructionHandle target) { 38 super(org.apache.bcel.Constants.IF_ICMPLE, target); 39 } 40 41 42 45 public IfInstruction negate() { 46 return new IF_ICMPGT(target); 47 } 48 49 50 58 public void accept( Visitor v ) { 59 v.visitStackConsumer(this); 60 v.visitBranchInstruction(this); 61 v.visitIfInstruction(this); 62 v.visitIF_ICMPLE(this); 63 } 64 } 65 | Popular Tags |