"Common Namespace : " + webapp.getGlobalNamespace() + CR +
"Common JS Folder : " + webapp.getGlobalFolder() + CR +
HR);
AdaptrexJS adaptrex = webapp.getAdaptrex();
ExtJS ext = webapp.getExt();
SenchaTouch st = webapp.getSenchaTouch();
String orm = webapp.getOrm();
String presentation = webapp.getPresentation();
String di = webapp.getDi();
System.out.println(CR + "Frameworks" + CR + HR + CR +
"AdaptrexJS : " +
(adaptrex == null ? "-" : adaptrex.getVersion() +
" (" + adaptrex.getFolderName() + ")") + CR +
"ExtJS : "
+ (ext == null ? "-" : ext.getVersion() + " (" + ext.getFolderName() + ")") + CR +
"Sencha Touch : " +
(st == null ? "-" : st.getVersion() + " (" + st.getFolderName() + ")") + CR +
"ORM : " + (orm == null ? "-" : orm) + CR +
"Presentation : " + (presentation == null ? "-" : presentation) + CR +
"DI : " + (di == null ? "-" : di) + CR +