Package org.apache.flex.compiler.problems

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


           */
          if (child instanceof TCYNode && this.parentNode instanceof TCYNode)
          {
                // <tcy> element is forbidden as child of <a>, which
            // is child of another <tcy>. And vice versa.
                problems.add(new FXGInvalidNestingElementsProblem(getDocumentPath(), getStartLine(),
                        getStartColumn()));
                return;
          }
            if (content == null)
            {
View Full Code Here


           */
          if (child instanceof LinkNode && this.parentNode instanceof LinkNode)
          {
                // Exception: <tcy> element is forbidden as child of <a>, which
            // is child of another <tcy>. And vice versa.
                problems.add(new FXGInvalidNestingElementsProblem(getDocumentPath(),
                        getStartLine(), getStartColumn()));
                return;
          }
         
            if (content == null)
View Full Code Here

TOP

Related Classes of org.apache.flex.compiler.problems.FXGInvalidNestingElementsProblem

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.