Community
Participate
Working Groups
if (element.getAttribute(IWorkbenchRegistryConstants.ATT_ICON) == null) {
if (getClassValue(element, IWorkbenchRegistryConstants.ATT_CLASS) != null) {
logMissingAttribute(element, IWorkbenchRegistryConstants.ATT_ICON);
return true;
// Fix for bug 65731: continue even if there is no icon attribute
}
StringBuffer buf = new StringBuffer();
buf
.append("Plugin " + extension.getNamespace() + ", extension " + extension.getExtensionPointUniqueIdentifier());//$NON-NLS-2$//$NON-NLS-1$
buf.append("\n" + text);//$NON-NLS-1$
// look for an ID if available - this should help debugging
String id = element.getAttribute("id"); //$NON-NLS-1$
if (id != null) {
buf.append(", id "); //$NON-NLS-1$
buf.append(id);
buf.append(": " + text);//$NON-NLS-1$
WorkbenchPlugin.log(buf.toString());