org.eclipse.jdt.internal.compiler.env
Interface IBinaryNestedType

All Known Implementing Classes:
InnerClassInfo

public interface IBinaryNestedType


Method Summary
 char[] getEnclosingTypeName()
          Answer the resolved name of the enclosing type in the class file format as specified in section 4.2 of the Java 2 VM spec.
 int getModifiers()
          Answer an int whose bits are set according the access constants defined by the VM spec.
 char[] getName()
          Answer the resolved name of the member type in the class file format as specified in section 4.2 of the Java 2 VM spec.
 

Method Detail

getEnclosingTypeName

char[] getEnclosingTypeName()
Answer the resolved name of the enclosing type in the class file format as specified in section 4.2 of the Java 2 VM spec. For example, java.lang.String is java/lang/String.


getModifiers

int getModifiers()
Answer an int whose bits are set according the access constants defined by the VM spec.


getName

char[] getName()
Answer the resolved name of the member type in the class file format as specified in section 4.2 of the Java 2 VM spec. For example, p1.p2.A.M is p1/p2/A$M.



Copyright © 2012. All Rights Reserved.