Examples of FXGInvalidScaleGridGroupChildProblem


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

            {
                if (isInsideScaleGrid())
                {
                    // A child Group cannot exist in a Group that
                    // defines the scale grid
                    problems.add(new FXGInvalidScaleGridGroupChildProblem(getDocumentPath(), child.getStartLine(), child.getStartColumn()));
                    return;
                }
            }

            children.add(graphicContent);
View Full Code Here

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

            {
                if (definesScaleGrid())
                {
                    // A child Group cannot exist in a Group that
                    // defines the scale grid
                    problems.add(new FXGInvalidScaleGridGroupChildProblem(getDocumentPath(), child.getStartLine(), child.getStartColumn()));
                    return;
                }
            }
        }
        else
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.