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

« back to all changes in this revision

Viewing changes to Mono.Addins/Mono.Addins.Description/ExtensionCollection.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:
32
32
 
33
33
namespace Mono.Addins.Description
34
34
{
 
35
        /// <summary>
 
36
        /// A collection of extensions
 
37
        /// </summary>
35
38
        public class ExtensionCollection: ObjectDescriptionCollection
36
39
        {
 
40
                /// <summary>
 
41
                /// Initializes a new instance of the <see cref="Mono.Addins.Description.ExtensionCollection"/> class.
 
42
                /// </summary>
37
43
                public ExtensionCollection ()
38
44
                {
39
45
                }
42
48
                {
43
49
                }
44
50
                
 
51
                /// <summary>
 
52
                /// Gets the <see cref="Mono.Addins.Description.Extension"/> at the specified index.
 
53
                /// </summary>
 
54
                /// <param name='n'>
 
55
                /// The index.
 
56
                /// </param>
45
57
                public Extension this [int n] {
46
58
                        get { return (Extension) List [n]; }
47
59
                }