Package com.ibm.JikesRVM.classloader

Examples of com.ibm.JikesRVM.classloader.VM_Method


    throw new RuntimeException("Not implemented: " + getClass().getName() + ".getEnclosingJoinPoint()");
  }

  public Method getMethod() {
    if (method == null) {
      VM_Method m = VM_FieldReference.getMemberRef(methodId).asMethodReference().resolve();
      method = java.lang.reflect.JikesRVMSupport.createMethod(m);
    }

    return method;
  }
View Full Code Here

TOP

Related Classes of com.ibm.JikesRVM.classloader.VM_Method

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.