Package org.aspectj.org.eclipse.jdt.internal.core.util

Examples of org.aspectj.org.eclipse.jdt.internal.core.util.KeyToSignature


   *
   * @return the thrown exceptions signatures
   * @since 3.3
   */
  public String[] getThrownExceptions() {
    KeyToSignature keyToSignature = new KeyToSignature(this.key, KeyToSignature.THROWN_EXCEPTIONS);
    keyToSignature.parse();
    return keyToSignature.getThrownExceptions();
  }
View Full Code Here


   * returns an empty array.
   *
   * @return the type argument signatures
   */
  public String[] getTypeArguments() {
    KeyToSignature keyToSignature = new KeyToSignature(this.key, KeyToSignature.TYPE_ARGUMENTS);
    keyToSignature.parse();
    return keyToSignature.getTypeArguments();
  }
View Full Code Here

   * @return the resolved signature for this binding key
   * @see Signature
   * @since 3.2
   */
  public String toSignature() {
    KeyToSignature keyToSignature = new KeyToSignature(this.key, KeyToSignature.SIGNATURE);
    keyToSignature.parse();
    return keyToSignature.signature.toString();
  }
View Full Code Here

TOP

Related Classes of org.aspectj.org.eclipse.jdt.internal.core.util.KeyToSignature

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.