Package de.bastiankrol.startexplorer.handlers

Source Code of de.bastiankrol.startexplorer.handlers.StartCmdExeFromEditorHandler

package de.bastiankrol.startexplorer.handlers;

import de.bastiankrol.startexplorer.handlers.delegates.StartCmdExeFromEditorHandlerDelegate;

/**
* Examines the selected region in a text file, tries to interpret it as a
* Windows filesystem path and tries to start cmd.exe for the directory
* described by that path.
*
* @author Bastian Krol
*/
public class StartCmdExeFromEditorHandler extends
    AbstractStartFromEditorHandler
{
  @Override
  StartCmdExeFromEditorHandlerDelegate getDelegate()
  {
    return new StartCmdExeFromEditorHandlerDelegate();
  }
}
TOP

Related Classes of de.bastiankrol.startexplorer.handlers.StartCmdExeFromEditorHandler

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.