Package de.bastiankrol.startexplorer.handlers

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

package de.bastiankrol.startexplorer.handlers;

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

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

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

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.