XmlSchemaReferenceCollection.cs :  » Build-Systems » NAntContrib » NAnt » Contrib » Types » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » Build Systems » NAntContrib 
NAntContrib » NAnt » Contrib » Types » XmlSchemaReferenceCollection.cs
#region GNU General Public License

// NAntContrib
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
//

#endregion

using System;
using System.Collections;

namespace NAnt.Contrib.Types{
    /// <summary>
    /// Contains a collection of <see cref="XmlSchemaReference" /> elements.
    /// </summary>
    [Serializable()]
    public class XmlSchemaReferenceCollection : CollectionBase {
        #region Public Instance Constructors

        /// <summary>
        /// Initializes a new instance of the <see cref="XmlSchemaReferenceCollection"/> class.
        /// </summary>
        public XmlSchemaReferenceCollection() {
        }
        
        /// <summary>
        /// Initializes a new instance of the <see cref="XmlSchemaReferenceCollection"/> class
        /// with the specified <see cref="XmlSchemaReferenceCollection"/> instance.
        /// </summary>
        public XmlSchemaReferenceCollection(XmlSchemaReferenceCollection value) {
            AddRange(value);
        }
        
        /// <summary>
        /// Initializes a new instance of the <see cref="XmlSchemaReferenceCollection"/> class
        /// with the specified array of <see cref="XmlSchemaReference"/> instances.
        /// </summary>
        public XmlSchemaReferenceCollection(XmlSchemaReference[] value) {
            AddRange(value);
        }

        #endregion Public Instance Constructors
        
        #region Public Instance Properties

        /// <summary>
        /// Gets or sets the element at the specified index.
        /// </summary>
        /// <param name="index">The zero-based index of the element to get or set.</param>
        [System.Runtime.CompilerServices.IndexerName("Item")]
        public XmlSchemaReference this[int index] {
            get { return (XmlSchemaReference) base.List[index]; }
            set { base.List[index] = value; }
        }

        /// <summary>
        /// Gets the <see cref="XmlSchemaReference"/> with the specified name.
        /// </summary>
        /// <param name="value">The name of the <see cref="XmlSchemaReference"/> to get.</param>
        [System.Runtime.CompilerServices.IndexerName("Item")]
        public XmlSchemaReference this[string value] {
            get {
                if (value != null) {
                    // Try to locate instance using Value
                    foreach (XmlSchemaReference parameter in base.List) {
                        if (parameter.Name == value) {
                            return parameter;
                        }
                    }
                }
                return null;
            }
        }

        #endregion Public Instance Properties

        #region Public Instance Methods
        
        /// <summary>
        /// Adds a <see cref="XmlSchemaReference"/> to the end of the collection.
        /// </summary>
        /// <param name="item">The <see cref="XmlSchemaReference"/> to be added to the end of the collection.</param> 
        /// <returns>The position into which the new element was inserted.</returns>
        public int Add(XmlSchemaReference item) {
            return base.List.Add(item);
        }

        /// <summary>
        /// Adds the elements of a <see cref="XmlSchemaReference"/> array to the end of the collection.
        /// </summary>
        /// <param name="items">The array of <see cref="XmlSchemaReference"/> elements to be added to the end of the collection.</param> 
        public void AddRange(XmlSchemaReference[] items) {
            for (int i = 0; (i < items.Length); i = (i + 1)) {
                Add(items[i]);
            }
        }

        /// <summary>
        /// Adds the elements of a <see cref="XmlSchemaReferenceCollection"/> to the end of the collection.
        /// </summary>
        /// <param name="items">The <see cref="XmlSchemaReferenceCollection"/> to be added to the end of the collection.</param> 
        public void AddRange(XmlSchemaReferenceCollection items) {
            for (int i = 0; (i < items.Count); i = (i + 1)) {
                Add(items[i]);
            }
        }
        
        /// <summary>
        /// Determines whether a <see cref="XmlSchemaReference"/> is in the collection.
        /// </summary>
        /// <param name="item">The <see cref="XmlSchemaReference"/> to locate in the collection.</param> 
        /// <returns>
        /// <see langword="true" /> if <paramref name="item"/> is found in the 
        /// collection; otherwise, <see langword="false" />.
        /// </returns>
        public bool Contains(XmlSchemaReference item) {
            return base.List.Contains(item);
        }

        /// <summary>
        /// Determines whether a <see cref="XmlSchemaReference"/> with the specified
        /// value is in the collection.
        /// </summary>
        /// <param name="value">The argument value to locate in the collection.</param> 
        /// <returns>
        /// <see langword="true" /> if a <see cref="XmlSchemaReference" /> with 
        /// value <paramref name="value"/> is found in the collection; otherwise, 
        /// <see langword="false" />.
        /// </returns>
        public bool Contains(string value) {
            return this[value] != null;
        }
        
        /// <summary>
        /// Copies the entire collection to a compatible one-dimensional array, starting at the specified index of the target array.        
        /// </summary>
        /// <param name="array">The one-dimensional array that is the destination of the elements copied from the collection. The array must have zero-based indexing.</param> 
        /// <param name="index">The zero-based index in <paramref name="array"/> at which copying begins.</param>
        public void CopyTo(XmlSchemaReference[] array, int index) {
            base.List.CopyTo(array, index);
        }
        
        /// <summary>
        /// Retrieves the index of a specified <see cref="XmlSchemaReference"/> object in the collection.
        /// </summary>
        /// <param name="item">The <see cref="XmlSchemaReference"/> object for which the index is returned.</param> 
        /// <returns>
        /// The index of the specified <see cref="XmlSchemaReference"/>. If the <see cref="XmlSchemaReference"/> is not currently a member of the collection, it returns -1.
        /// </returns>
        public int IndexOf(XmlSchemaReference item) {
            return base.List.IndexOf(item);
        }
        
        /// <summary>
        /// Inserts a <see cref="XmlSchemaReference"/> into the collection at the specified index.
        /// </summary>
        /// <param name="index">The zero-based index at which <paramref name="item"/> should be inserted.</param>
        /// <param name="item">The <see cref="XmlSchemaReference"/> to insert.</param>
        public void Insert(int index, XmlSchemaReference item) {
            base.List.Insert(index, item);
        }
        
        /// <summary>
        /// Returns an enumerator that can iterate through the collection.
        /// </summary>
        /// <returns>
        /// A <see cref="XmlSchemaReferenceEnumerator"/> for the entire collection.
        /// </returns>
        public new XmlSchemaReferenceEnumerator GetEnumerator() {
            return new XmlSchemaReferenceEnumerator(this);
        }
        
        /// <summary>
        /// Removes a member from the collection.
        /// </summary>
        /// <param name="item">The <see cref="XmlSchemaReference"/> to remove from the collection.</param>
        public void Remove(XmlSchemaReference item) {
            base.List.Remove(item);
        }
        
        #endregion Public Instance Methods
    }

    /// <summary>
    /// Enumerates the <see cref="XmlSchemaReference"/> elements of a <see cref="XmlSchemaReferenceCollection"/>.
    /// </summary>
    public class XmlSchemaReferenceEnumerator : IEnumerator {
        #region Internal Instance Constructors

        /// <summary>
        /// Initializes a new instance of the <see cref="XmlSchemaReferenceEnumerator"/> class
        /// with the specified <see cref="XmlSchemaReferenceCollection"/>.
        /// </summary>
        /// <param name="arguments">The collection that should be enumerated.</param>
        internal XmlSchemaReferenceEnumerator(XmlSchemaReferenceCollection arguments) {
            IEnumerable temp = (IEnumerable) (arguments);
            _baseEnumerator = temp.GetEnumerator();
        }

        #endregion Internal Instance Constructors

        #region Implementation of IEnumerator
            
        /// <summary>
        /// Gets the current element in the collection.
        /// </summary>
        /// <returns>
        /// The current element in the collection.
        /// </returns>
        public XmlSchemaReference Current {
            get { return (XmlSchemaReference) _baseEnumerator.Current; }
        }

        object IEnumerator.Current {
            get { return _baseEnumerator.Current; }
        }

        /// <summary>
        /// Advances the enumerator to the next element of the collection.
        /// </summary>
        /// <returns>
        /// <see langword="true" /> if the enumerator was successfully advanced 
        /// to the next element; <see langword="false" /> if the enumerator has 
        /// passed the end of the collection.
        /// </returns>
        public bool MoveNext() {
            return _baseEnumerator.MoveNext();
        }

        bool IEnumerator.MoveNext() {
            return _baseEnumerator.MoveNext();
        }
            
        /// <summary>
        /// Sets the enumerator to its initial position, which is before the 
        /// first element in the collection.
        /// </summary>
        public void Reset() {
            _baseEnumerator.Reset();
        }
            
        void IEnumerator.Reset() {
            _baseEnumerator.Reset();
        }

        #endregion Implementation of IEnumerator

        #region Private Instance Fields
    
        private IEnumerator _baseEnumerator;

        #endregion Private Instance Fields
    }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.