Package org.apache.flex.compiler.problems

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


                    swfReader.readFrom(swfInputStream, SWCReader.getReportingPath(
                            swc.getSWCFile().getAbsolutePath(), swfPath));
                }
                else if (swc instanceof SWC)
                {
                    ((SWC)swc).addProblem(new FileInLibraryNotFoundProblem(swfPath,
                            swc.getSWCFile().getAbsolutePath()));
                }
            }
            finally
            {
View Full Code Here


            {
                zipFile = new ZipFile(swcFile, ZipFile.OPEN_READ);
                final InputStream catalogInputStream = getInputStream(zipFile, CATALOG_XML);
                if (catalogInputStream == null)
                {
                    swc.addProblem(new FileInLibraryNotFoundProblem(swcFile.getAbsolutePath(), CATALOG_XML));
                    return;
                }               
                catalogReader = new StAXCatalogReader(new BufferedInputStream(catalogInputStream), swc);
                catalogReader.parse();
                catalogReader.close();
View Full Code Here

TOP

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

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.