private void raiseEditor(int lineNum) {
   ScriptEditorForBeanShell editor = null;
   try {
     URL sourceUrl = metaData.getSourceURL();
     editor = ScriptEditorForBeanShell.getEditor(sourceUrl);
     if (editor == null) {
       editor = ScriptEditorForBeanShell.getEditor();
       editor.edit(
           ScriptContext.createContext(
               m_xModel, m_xInvocContext, m_xContext, m_xMultiComponentFactory),
           metaData);
       editor = ScriptEditorForBeanShell.getEditor(sourceUrl);
     }
     if (editor != null) {
       editor.indicateErrorLine(lineNum);
     }
   } catch (Exception ignore) {
   }
 }