Package fr.obeo.releng.targetplatform.ui.handler

Source Code of fr.obeo.releng.targetplatform.ui.handler.ConvertTargetPlatformFromEditor

/*******************************************************************************
* Copyright (c) 2014 Obeo.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
*     Obeo - initial API and implementation
*******************************************************************************/
package fr.obeo.releng.targetplatform.ui.handler;

import org.eclipse.core.commands.AbstractHandler;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.commands.ExecutionException;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.runtime.jobs.Job;
import org.eclipse.ui.IEditorPart;
import org.eclipse.ui.handlers.HandlerUtil;
import org.eclipse.ui.part.FileEditorInput;

/**
* @author <a href="mailto:mikael.barbero@obeo.fr">Mikael Barbero</a>
*/
public class ConvertTargetPlatformFromEditor extends AbstractHandler {

  /**
   * {@inheritDoc}
   *
   * @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
   */
  @Override
  public Object execute(ExecutionEvent event) throws ExecutionException {
    IEditorPart editor = HandlerUtil.getActiveEditor(event);
    if (editor != null && editor.getEditorInput() instanceof FileEditorInput) {
      if (editor.isDirty()) {
        editor.doSave(null);
      }
      IFile editedFile = ((FileEditorInput) editor.getEditorInput()).getFile();
      scheduleJob(editedFile, true);
    }
    return null;
  }

  private void scheduleJob(final IFile selectedElement, boolean userJob) {
    Job job = new ConvertTargetPlatformJob("Creating target platform definition file", selectedElement, false);
    job.setUser(userJob);
    job.schedule();
  }
}
TOP

Related Classes of fr.obeo.releng.targetplatform.ui.handler.ConvertTargetPlatformFromEditor

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.