Package org.apache.flex.compiler.problems

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


        // if any of the scaling values are set, they all need to be set
        if (scaleGridBottom != null || scaleGridLeft != null || scaleGridRight != null || scaleGridTop != null)
        {
            if (scaleGridBottom == null || scaleGridLeft == null || scaleGridRight == null || scaleGridTop == null)
            {
                problems.add(new EmbedScalingGridProblem(location));
                result = false;
            }
            else
            {
                // values ok, so turn on scaling
View Full Code Here

TOP

Related Classes of org.apache.flex.compiler.problems.EmbedScalingGridProblem

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.