Package net.sourceforge.javautil.bytecode.api.type.method.invocation

Examples of net.sourceforge.javautil.bytecode.api.type.method.invocation.MathmaticalOperation


  public MathmaticalOperation createAddOperation (IBytecodeReferenceable arg1, IBytecodeReferenceable arg2) {
    return this.createMathOperation(arg1, arg2, MathmaticalOperator.Plus);
  }
 
  public MathmaticalOperation createMathOperation (IBytecodeReferenceable arg1, IBytecodeReferenceable arg2, MathmaticalOperator operator) {
    return new MathmaticalOperation(arg1, arg2, operator);
  }
View Full Code Here

TOP

Related Classes of net.sourceforge.javautil.bytecode.api.type.method.invocation.MathmaticalOperation

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.