Package com.adobe.internal.fxg.dom

Examples of com.adobe.internal.fxg.dom.GroupDefinitionNode


        return po3;
    }

    protected void definition(DefinitionNode node, DefineSprite definitionSprite)
    {
        GroupDefinitionNode groupDefinition = node.groupDefinition;
       
        if (groupDefinition == null)
        {
          //Exception:Definitions must define a single Group child node.
            throw new FXGException(node.getStartLine(), node.getStartColumn(), "MissingGroupChildNode");
        }
        spriteStack.push(definitionSprite);

        if (groupDefinition.definesScaleGrid())
        {
            definitionSprite.scalingGrid = createDefineScalingGrid(groupDefinition.getScalingGrid());
            definitionSprite.scalingGrid.scalingTarget = definitionSprite;
        }

        graphicContentNodes(groupDefinition.children);
View Full Code Here

TOP

Related Classes of com.adobe.internal.fxg.dom.GroupDefinitionNode

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.