Examples of FXGInvalidVersionProblem


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

            {
                version = FXGVersion.newInstance(DOMParserHelper.parseDouble(this, value, Double.MIN_VALUE, Double.MAX_VALUE));
            }
            catch (Exception e)
            {
                problems.add(new FXGInvalidVersionProblem(getDocumentPath(),
                        getStartLine(), getStartColumn(), value));
                return;
            }
        }
        else if (FXG_MASKTYPE_ATTRIBUTE.equals(name))
View Full Code Here

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

                            if  (REJECT_MAJOR_VERSION_MISMATCH)
                            {
                                // Major version of this FXG file is greater than
                                // major version supported by this compiler. Cannot process
                                // the file.
                                problems.add(new FXGInvalidVersionProblem(documentPath, startLine, startColumn, root.getVersion().asString()));
                                return;
                            }
                            else
                            {
                                // Warning: Major version of this FXG file is greater than
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.