Examples of NativeUsedInInterfaceProblem


Examples of org.apache.flex.compiler.problems.NativeUsedInInterfaceProblem

            {
                interfaceScope.addProblem(new FinalOutsideClassProblem(site));
            }
            else if( modifier == ASModifier.NATIVE )
            {
                interfaceScope.addProblem(new NativeUsedInInterfaceProblem(site));
            }
            else if( modifier == ASModifier.VIRTUAL )
            {
                interfaceScope.addProblem(new VirtualOutsideClassProblem(site));
            }
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.