1 package com.sun.org.apache.bcel.internal.generic; 2 3 56 57 65 public class IFGE extends IfInstruction { 66 70 IFGE() {} 71 72 public IFGE(InstructionHandle target) { 73 super(com.sun.org.apache.bcel.internal.Constants.IFGE, target); 74 } 75 76 79 public IfInstruction negate() { 80 return new IFLT(target); 81 } 82 83 84 92 public void accept(Visitor v) { 93 v.visitStackConsumer(this); 94 v.visitBranchInstruction(this); 95 v.visitIfInstruction(this); 96 v.visitIFGE(this); 97 } 98 } 99 | Popular Tags |