Package info.cukes.editor.formatting

Source Code of info.cukes.editor.formatting.FormatHandler

package info.cukes.editor.formatting;

import info.cukes.editor.FeatureEditor;

import org.eclipse.core.commands.AbstractHandler;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.commands.ExecutionException;
import org.eclipse.ui.handlers.HandlerUtil;

public class FormatHandler extends AbstractHandler {

    @Override
    public Object execute(ExecutionEvent event) throws ExecutionException {
        FeatureEditor editor = (FeatureEditor) HandlerUtil.getActiveEditor(event);
        editor.format();

        return null;
    }
}
TOP

Related Classes of info.cukes.editor.formatting.FormatHandler

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.