Package org.apache.flex.compiler.internal.fxg.dom

Examples of org.apache.flex.compiler.internal.fxg.dom.GroupNode


        {
            int clipDepth = 1;
            // If we had a graphic or group, clip the depths for all children.
            if (node instanceof GroupNode)
            {
                GroupNode group = (GroupNode)node;
                if (group.children != null)
                    clipDepth = getSpriteDepth(parentSprite) + group.children.size();
            }
            else if (node instanceof GraphicNode)
            {
View Full Code Here

TOP

Related Classes of org.apache.flex.compiler.internal.fxg.dom.GroupNode

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.