// Check if there is an association for this MIME type
MimeTypeAssociation mta = getMimeTypeAssociation(mimeType);
if (mta != null && mta.getAssociatedProgram() != null)
{
event.addResult(new OpenEventInfo("plugin.externalassociation.openfile", mimeType, mta.getDescription()));
return EVENT_HANDLED;
}
return EVENT_IGNORED;
}