Examples of superInterfaces()


Examples of org.eclipse.jdt.internal.compiler.lookup.WildcardBinding.superInterfaces()

            ReferenceBinding superclass = wildcardBinding.superclass();
            if (superclass != null
                && ((superclass.tagBits & TagBits.ContainsNestedTypeReferences) != 0)) {
              recordNestedType(classFile, superclass);
            }
            ReferenceBinding[] superInterfaces = wildcardBinding.superInterfaces();
            if (superInterfaces != null) {
              for (int k = 0, max3 =  superInterfaces.length; k < max3; k++) {
                ReferenceBinding superInterface = superInterfaces[k];
                if ((superInterface.tagBits & TagBits.ContainsNestedTypeReferences) != 0) {
                  recordNestedType(classFile, superInterface);
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.