Package com.sun.jdi

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


   * @see org.eclipse.jdt.debug.core.IJavaVariable#getGenericSignature()
   */
  public String getGenericSignature() throws DebugException {
    try {
      ReferenceType referenceType = getArrayReference().referenceType();
      String genericSignature = referenceType.genericSignature();
      if (genericSignature != null) {
        return genericSignature;
      }
      return referenceType.signature();
    } catch (RuntimeException 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.