Package org.aspectj.apache.bcel.classfile.Signature

Examples of org.aspectj.apache.bcel.classfile.Signature.ArrayTypeSignature


   
    private ArrayTypeSignature parseArrayTypeSignature() {
      // opening [ already eaten
      FieldTypeSignature fieldType = parseFieldTypeSignature(true);
      if (fieldType != null) {
        return new ArrayTypeSignature(fieldType);
      } else {
        // must be BaseType array
        return new ArrayTypeSignature(new BaseTypeSignature(eatIdentifier()));
      }
    }
View Full Code Here

TOP

Related Classes of org.aspectj.apache.bcel.classfile.Signature.ArrayTypeSignature

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.