Package org.aspectj.apache.bcel.generic

Examples of org.aspectj.apache.bcel.generic.BIPUSH


      case 3: inst =  InstructionConstants.ICONST_3; break;
      case 4: inst =  InstructionConstants.ICONST_4;  break;     
      case 5: inst =  InstructionConstants.ICONST_5;  break
    }
    if (i <= Byte.MAX_VALUE && i >= Byte.MIN_VALUE) {
         inst =  new BIPUSH((byte)i);
    } else if (i <= Short.MAX_VALUE && i >= Short.MIN_VALUE) {
      inst =  new SIPUSH((short)i);
    } else {
      inst =  new LDC(fact.getClassGen().getConstantPool().addInteger(i));
    }
View Full Code Here

TOP

Related Classes of org.aspectj.apache.bcel.generic.BIPUSH

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.