// 8. format workflowProcess listener class name
// ---------------------------------------------------------------
for (int i = 0; i < process_size; ++i)
{
WorkflowProcess workflowProcess = (WorkflowProcess) processList.get(i);
ExtendedAttribute attribute = workflowProcess.findExtendedAttribute(XPDLGlobals.LISTENER_QUALIFIED_CLASS_NAME);
if (attribute != null)
{
workflowProcess.setListenerClassName(attribute.getValue());
workflowProcess.removeExtendedAttribute(XPDLGlobals.LISTENER_QUALIFIED_CLASS_NAME);
}