1 17 package org.apache.bcel.generic; 18 19 27 public class IFLE extends IfInstruction { 28 29 33 IFLE() { 34 } 35 36 37 public IFLE(InstructionHandle target) { 38 super(org.apache.bcel.Constants.IFLE, target); 39 } 40 41 42 45 public IfInstruction negate() { 46 return new IFGT(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.visitIFLE(this); 63 } 64 } 65 | Popular Tags |