Examples of classObject()


Examples of com.sun.jdi.ReferenceType.classObject()

   */
  public IJavaClassObject getClassObject() throws DebugException {
    try {
      ReferenceType type = (ReferenceType) getUnderlyingType();
      return (IJavaClassObject) JDIValue.createValue(
          getJavaDebugTarget(), type.classObject());
    } catch (RuntimeException e) {
      targetRequestFailed(
          MessageFormat.format(
              JDIDebugModelMessages.JDIClassType_exception_while_retrieving_class_object,
              e.toString()), e);
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.