Examples of FXGInvalidDefinitionNameProblem


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

        if (FXG_NAME_ATTRIBUTE.equals(name))
        {
            this.name = DOMParserHelper.parseIdentifier(this, name, value, this.name, problems);
            if (((GraphicNode)this.getDocumentNode()).reservedNodes.containsKey(value))
            {
                problems.add(new FXGInvalidDefinitionNameProblem(getDocumentPath(), getStartLine(), getStartColumn(), value));
                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.