~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to external/mono-addins/Mono.Addins/Mono.Addins/IAddinInstaller.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
 
 
3
using System;
 
4
 
 
5
namespace Mono.Addins
 
6
{
 
7
        /// <summary>
 
8
        /// An add-in installation handler
 
9
        /// </summary>
 
10
        public interface IAddinInstaller
 
11
        {
 
12
                /// <summary>
 
13
                /// Installs a set of add-ins
 
14
                /// </summary>
 
15
                /// <param name="reg">
 
16
                /// Registry where to install
 
17
                /// </param>
 
18
                /// <param name="message">
 
19
                /// Message to show to the user when new add-ins have to be installed.
 
20
                /// </param>
 
21
                /// <param name="addinIds">
 
22
                /// List of IDs of the add-ins to be installed.
 
23
                /// </param>
 
24
                void InstallAddins (AddinRegistry reg, string message, string[] addinIds);
 
25
        }
 
26
}