Examples of FXGInvalidNodeAttributeProblem


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

          //FXGLog.getLogger().log(IFXGLogger.WARN, "UnknownNodeAttribute", null, getDocumentName(), startLine, startColumn);
        }
        else
        {
            // Exception:Attribute {0} not supported by node {1}.
            problems.add(new FXGInvalidNodeAttributeProblem(getDocumentPath(), getStartLine(), getStartColumn(), name, getNodeName()));
        }
    }
View Full Code Here

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

            //id = value;
        }
        else
        {
          //Attribute, {0}, not supported by node: {1}.
            problems.add(new FXGInvalidNodeAttributeProblem(getDocumentPath(),
                    getStartLine(), getStartColumn(), name, getNodeName()));
            return;
        }
       
        // Remember attribute was set on this node.
View Full Code Here

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

        }
        else if (getFileVersion().equalTo(FXGVersion.v1_0))
        {
            // Rest of the attributes are not supported by FXG 1.0
            // Attribute {0} not supported by node {1}.
            problems.add(new FXGInvalidNodeAttributeProblem(getDocumentPath(), getStartLine(), getStartColumn(), name, getNodeName()));
            return;
        }
        else if (FXG_LUMINOSITYCLIP_ATTRIBUTE.equals(name))
        {
            luminosityClip = DOMParserHelper.parseBoolean(this, value, name, luminosityClip, problems);
View Full Code Here

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

        }
        else if ((version != null) && (version.equalTo(FXGVersion.v1_0)))
        {
            // Rest of the attributes are not supported by FXG 1.0
            // Attribute {0} not supported by node {1}.
            problems.add(new FXGInvalidNodeAttributeProblem(getDocumentPath(), getStartLine(), getStartColumn(), name, getNodeName()));
            return;
        }
        else if (FXG_LUMINOSITYINVERT_ATTRIBUTE.equals(name))
        {
            luminosityInvert = DOMParserHelper.parseBoolean(this, value, name, luminosityInvert, problems);
View Full Code Here

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

     */
    @Override
    public void setAttribute(String name, String value, Collection<ICompilerProblem> problems)
    {
        //Attribute {0} not supported by node {1}
        problems.add(new FXGInvalidNodeAttributeProblem(getDocumentPath(), getStartLine(), getStartColumn(), name, getNodeName()));
    }
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.