Package org.apache.flex.compiler.internal.graph

Examples of org.apache.flex.compiler.internal.graph.LinkReportWriter


                outStream = new FileOutputStream(targetSettings.getLinkReport());
               
                // Ignore the problems found by getReachableCompilationUnits(). Those problems
                // should have already been found by the build.
                Collection<ICompilerProblem> reachableProblems = new ArrayList<ICompilerProblem>();
                LinkReportWriter reportWriter = new LinkReportWriter(project.getDependencyGraph(),
                        getReachableCompilationUnits(reachableProblems),
                        getLinkageChecker());
                reportWriter.writeToStream(outStream, problems);
            }
            catch (FileNotFoundException e)
            {
                final ICompilerProblem problem = new UnableToCreateLinkReportProblem(
                        targetSettings.getLinkReport().getAbsolutePath());
View Full Code Here

TOP

Related Classes of org.apache.flex.compiler.internal.graph.LinkReportWriter

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.