~ubuntu-branches/ubuntu/trusty/mono-addins/trusty-proposed

« back to all changes in this revision

Viewing changes to Mono.Addins/Mono.Addins.Localization/IAddinLocalizerFactory.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2011-04-25 11:11:33 UTC
  • mfrom: (4.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20110425111133-t05u5p7o5fxx70fu
Tags: 0.6-2
Upload to Unstable

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
 
31
31
namespace Mono.Addins.Localization
32
32
{
 
33
        /// <summary>
 
34
        /// A localizer factory.
 
35
        /// </summary>
33
36
        public interface IAddinLocalizerFactory
34
37
        {
 
38
                /// <summary>
 
39
                /// Creates a localizer for an add-in.
 
40
                /// </summary>
 
41
                /// <returns>
 
42
                /// The localizer.
 
43
                /// </returns>
 
44
                /// <param name='addin'>
 
45
                /// The add-in for which to create the localizer.
 
46
                /// </param>
 
47
                /// <param name='element'>
 
48
                /// Localizer parameters.
 
49
                /// </param>
35
50
                IAddinLocalizer CreateLocalizer (RuntimeAddin addin, NodeElement element);
36
51
        }
37
52
}