* @param modelElement
* a ModelElement
*/
public static void openEditor(EObject modelElement, String editorID)
{
MEEditorInput input = new MEEditorInput(modelElement, null);
try
{
PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().openEditor(input, editorID, true);
}
catch(PartInitException e)