Package org.aspectj.org.eclipse.jdt.internal.compiler.lookup

Examples of org.aspectj.org.eclipse.jdt.internal.compiler.lookup.TypeBinding.shortReadableName()


        buffer.append(", "); //$NON-NLS-1$
      TypeBinding type = types[i];
      boolean isVarargType = isVarargs && i == length - 1;
      if (isVarargType)
        type = ((ArrayBinding) type).elementsType();
      buffer.append(new String(makeShort ? type.shortReadableName() : type.readableName()));
      if (isVarargType)
        buffer.append("..."); //$NON-NLS-1$
    }
    return buffer.toString();
  }
View Full Code Here


        if (i != 0)
          buffer.append(", "); //$NON-NLS-1$
        TypeBinding type = types[i];
        boolean isVarargType = isVarargs && i == length-1;
        if (isVarargType) type = ((ArrayBinding)type).elementsType();
        buffer.append(new String(makeShort ? type.shortReadableName() : type.readableName()));
        if (isVarargType) buffer.append("..."); //$NON-NLS-1$
      }
      return buffer.toString();
    }
   
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.