*/
protected JComponent createApplicationDescriptorComponent() {
// Build the application descriptor data, if available
JTextArea txtDescriptor = getComponentFactory().createTextAreaAsLabel();
txtDescriptor.setBorder(BorderFactory.createEmptyBorder(5, 5, 0, 0));
ApplicationDescriptor appDesc = Application.instance().getDescriptor();
if( appDesc != null ) {
String displayName = appDesc.getDisplayName();
String caption = appDesc.getCaption();
String description = appDesc.getDescription();
String version = appDesc.getVersion();
String buildId = appDesc.getBuildId();
StringBuffer sb = new StringBuffer();
if( StringUtils.hasText(displayName) ) {
sb.append(displayName).append("\n");
}