Package org.eclipse.jdt.debug.core

Examples of org.eclipse.jdt.debug.core.IJavaClassType.newInstance()


    // args are in reverse order
    for (int i = fArgCount - 1; i >= 0; i--) {
      args[i] = popValue();
    }
    IJavaClassType clazz = (IJavaClassType) pop();
    IJavaValue result = clazz.newInstance(fSignature, args, getContext()
        .getThread());
    push(result);
  }

  @Override
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.