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