Package org.apache.flex.compiler.problems

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


                    final String componentName = reader.getAttributeValue(null, ATTR_NAME);
                    final String uri = reader.getAttributeValue(null, ATTR_URI);
                   
                    if (uri == null || uri.isEmpty())
                    {
                        swc.addProblem(new ComponentTagWithoutURIProblem(componentName, SWCReader.CATALOG_XML, containingSWCFile));
                        continue;
                    }
                   
                    final String icon = reader.getAttributeValue(null, ATTR_ICON);
                    final String preview = reader.getAttributeValue(null, ATTR_PREVIEW);
View Full Code Here

TOP

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

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.