Examples of FXGUnknownAttributeValueProblem


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

            return WhiteSpaceCollapse.PRESERVE;
        else if (FXG_WHITESPACE_COLLAPSE_VALUE.equals(value))
            return WhiteSpaceCollapse.COLLAPSE;
       
        //string did not match a known WhiteSpaceCollapse rule.
        problems.add(new FXGUnknownAttributeValueProblem(((GraphicNode)node.getDocumentNode()).getDocumentPath(), node.getStartLine(),
                node.getStartColumn(), FXG_WHITESPACECOLLAPSE_ATTRIBUTE, value));
       
        return WhiteSpaceCollapse.PRESERVE;
    }
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.