[196418] Tag Library Editor feature request (restore Show Attributes functionality)
diff --git a/bundles/org.eclipse.jst.jsp.ui/src/org/eclipse/jst/jsp/ui/internal/views/contentoutline/TLDContentOutlineConfiguration.java b/bundles/org.eclipse.jst.jsp.ui/src/org/eclipse/jst/jsp/ui/internal/views/contentoutline/TLDContentOutlineConfiguration.java
index 1d5a379..aa7147c 100644
--- a/bundles/org.eclipse.jst.jsp.ui/src/org/eclipse/jst/jsp/ui/internal/views/contentoutline/TLDContentOutlineConfiguration.java
+++ b/bundles/org.eclipse.jst.jsp.ui/src/org/eclipse/jst/jsp/ui/internal/views/contentoutline/TLDContentOutlineConfiguration.java
@@ -144,7 +144,7 @@
 						 * Currently not externalized since it's analagous to
 						 * a decorator.
 						 */
-						return name + " [" + value + "]"; //$NON-NLS-1$
+						return fParentProvider.getText(domElement) + " [" + value + "]"; //$NON-NLS-1$
 					}
 				}
 
@@ -176,7 +176,7 @@
 				showContents = showContents || JSP12TLDNames.LARGE_ICON.equals(name);
 
 				if (showContents) {
-					return name + ": " + getContainedText(domElement); //$NON-NLS-1$
+					return fParentProvider.getText(domElement) + ": " + getContainedText(domElement); //$NON-NLS-1$
 				}
 
 				if (JSP11TLDNames.TAGLIB.equals(name)) {
@@ -186,7 +186,7 @@
 						 * Currently not externalized since it's analagous to
 						 * a decorator.
 						 */
-						return name + " [" + value + "]"; //$NON-NLS-1$
+						return fParentProvider.getText(domElement) + " [" + value + "]"; //$NON-NLS-1$
 					}
 				}
 			}