AtomContentCollection.cs :  » RSS-RDF » GtkSharpRSS » Atom » Core » Collections » 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 » RSS RDF » GtkSharpRSS 
GtkSharpRSS » Atom » Core » Collections » AtomContentCollection.cs
/* 
    * AtomContentCollection.cs
  * [ part of Atom.NET library: http://atomnet.sourceforge.net ]
  * Author: Lawrence Oluyede
  * License: BSD-License (see below)
    
  Copyright (c) 2003, 2004 Lawrence Oluyede
    All rights reserved.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions are met:

    * Redistributions of source code must retain the above copyright notice,
    * this list of conditions and the following disclaimer.
    * Redistributions in binary form must reproduce the above copyright
    * notice, this list of conditions and the following disclaimer in the
    * documentation and/or other materials provided with the distribution.
    * Neither the name of the copyright owner nor the names of its
    * contributors may be used to endorse or promote products derived from
    * this software without specific prior written permission.

    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
    LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
    CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
    SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
    INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
    CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
    ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
    POSSIBILITY OF SUCH DAMAGE.
*/
using System;
using System.Collections;
using Atom.Utils;

namespace Atom.Core.Collections{
  /// <summary>
  /// A strongly typed collection of <see cref="AtomContent"/> objects.
  /// <seealso cref="AtomContent"/>
  /// </summary>
  [Serializable]
  public class AtomContentCollection : CollectionBase
  {
    #region Collection methods

    /// <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>
    public AtomContent this[int index]
    {
      get { return ((AtomContent)this.List[index]); }
      set
      {
        CheckInsertion(value as AtomContent);
        this.List[index] = value as AtomContent;
      }
    }

    /// <summary>
    /// Adds an object to the end of the <see cref="AtomContentCollection"/>.
    /// </summary>
    /// <param name="content">The <see cref="AtomContent"/> to be added to the end of the <see cref="AtomContentCollection"/>.</param>
    /// <returns>The <see cref="AtomContentCollection"/> index at which the value has been added.</returns>
    public int Add(AtomContent content)
    {
      CheckInsertion(content);
      return this.List.Add(content);
    }

    /// <summary>
    /// Determines whether the <see cref="AtomContentCollection"/> contains a specific element.
    /// </summary>
    /// <param name="content">The <see cref="AtomContent"/> to locate in the <see cref="AtomContentCollection"/>.</param>
    /// <returns>true if the <see cref="AtomContentCollection"/> contains the specified item, otherwise false.</returns>
    public bool Contains(AtomContent content)
    {
      return this.List.Contains(content);
    }

    /// <summary>
    /// Copies the entire <see cref="AtomContentCollection"/> to a compatible one-dimensional <see cref="Array"/>,
    /// starting at the specified index of the target array.
    /// </summary>
    /// <param name="array">The one-dimensional <see cref="Array"/> that is the destination of the elements
    /// copied from <see cref="AtomContentCollection"/>. The <see cref="Array"/> must have zero-based indexing. </param>
    /// <param name="index">The zero-based index in <i>array</i> at which copying begins.</param>
    public void CopyTo(AtomContentCollection[] array, int index)
    {
      this.List.CopyTo(array, index);
    }

    /// <summary>
    /// Searches for the specified <see cref="AtomContent"/> and returns the zero-based index of the first occurrence
    /// within the entire <see cref="AtomContentCollection"/>.
    /// </summary>
    /// <param name="content">The <see cref="AtomContent"/> to locate in the <see cref="AtomContentCollection"/>.</param>
    /// <returns>The zero-based index of the first occurrence of <i>content</i> within the entire <see cref="AtomContentCollection"/>,
    /// if found; otherwise, -1.</returns>
    public int IndexOf(AtomContent content)
    {
      return List.IndexOf(content);
    }

    /// <summary>Inserts a <see cref="AtomContent"/> into this collection at the specified index.</summary>
    /// <param name="index">The zero-based index of the collection at which <i>content</i> should be inserted.</param>
    /// <param name="content">The <see cref="AtomContent"/> to insert into this collection.</param>
    public void Insert(int index, AtomContent content)
    {
      CheckInsertion(content);
      List.Insert(index, content);
    }

    /// <summary>Removes the first occurrence of a specific <see cref="AtomContent"/> from the <see cref="AtomContentCollection"/>.</summary>
    /// <param name="content">The <see cref="AtomContent"/> to remove from the <see cref="AtomContentCollection"/>.</param>
    public void Remove(AtomContent content)
    {
      List.Remove(content);
    }

    #endregion CollectionMethods

    #region Private methods

    /// <summary>
    /// Performs some checks inside the collection. Used for compliancy to the standard.
    /// </summary>
    /// <param name="content">The <see cref="AtomContent"/> to check.</param>
    private void CheckInsertion(AtomContent content)
    {
      // if it's not the first inserted element
      if(this.List.Count != 0)
      {
        // if the type is multipart/alternative
        if(content.Type == MediaType.MultipartAlternative)
        {
          // check if is the collection already have an item
          // with the multipart/alternative type
          foreach(AtomContent item in this)
          {
            if(item.Type == MediaType.MultipartAlternative)
              if(item.Type == content.Type)
                throw new OnlyOneMultipartContentAllowedException(
                  "There can't be more than one content with multipart/alternative media type.");
          }
        }
      }
    }

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