/// <summary> /// The method you need to implement for your script to do anything. /// </summary> /// <param name="context">A copy of the script context of the Eclipse session.</param> public abstract void Run(PluginScriptContext context);
/// <summary> /// The method you need to implement for your script to do anything. /// </summary> /// <param name="context">A copy of the script context of the Eclipse session.</param> /// <param name="window">The Window for your script that Eclipse will display.</param> public abstract void Execute(PluginScriptContext context, Window window);