*
* @return String taginfo if it exists, null otherwise
*/
private String getTagInfo() {
if (getOwnerDocument().supports("annotationMap")) { //$NON-NLS-1$
AnnotationMap map = (AnnotationMap) getOwnerDocument().getProperty("annotationMap"); //$NON-NLS-1$
String spec = getSpec();
String result = map.getProperty(spec, "tagInfo"); //$NON-NLS-1$
return result;
// bug88336 no need to restore markers
// return StringUtils.restoreMarkers(result); // return tag info
}
return null;