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

Examples of org.aspectj.org.eclipse.jdt.internal.compiler.ast.QualifiedTypeReference.dimensions()


      }
      return output;
    } else if (tr instanceof QualifiedTypeReference) {
      QualifiedTypeReference qtr = (QualifiedTypeReference) tr;
      output.append(CharOperation.concatWith(qtr.tokens, '.'));
      for (int i = 0; i < qtr.dimensions(); i++) {
        output.append("[]"); //$NON-NLS-1$
      }
      return output;
    }
    throwit(tr);
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.