Examples of SwcExternalScriptInfo


Examples of flex2.compiler.util.SwcExternalScriptInfo

                 
                    // list the external scripts that caused the dependencies between
                    // swcLocation and swcDepName.
                    if (dependencyConfig.getShowExterns())
                    {
                        SwcExternalScriptInfo swcExternalScriptInfo = depInfo.getSwcExternalScriptInfo(swcLocation);
                        for (String externalScriptName : swcExternalScriptInfo.getExternalScripts(swcDepName))
                        {
                            if (dependencyConfig.getShowTypes())
                            {
                                System.out.print("\t\t" + externalScriptName + "\t");
                               
                                for (String type : swcExternalScriptInfo.getScriptDependencyTypes(externalScriptName))
                                {
                                    System.out.print(type + " ");
                                }
                               
                                System.out.println();
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.