Package sbt.eclipse.popup.actions

Source Code of sbt.eclipse.popup.actions.ConfigureSourceFoldersAction

package sbt.eclipse.popup.actions;

import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.jface.action.IAction;

import sbt.eclipse.logic.SourceFoldersConfigurer;

/**
* @author Joonas Javanainen
*
*/
public class ConfigureSourceFoldersAction extends AbstractProjectAction {

    public ConfigureSourceFoldersAction() {
        super();
    }

    /**
     * @param project
     * @throws CoreException
     */
    protected void run(IAction action, IProject project) throws CoreException {
        new SourceFoldersConfigurer(project).run(null);
    }

}
TOP

Related Classes of sbt.eclipse.popup.actions.ConfigureSourceFoldersAction

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.