// 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();