Click here to Skip to main content
15,892,965 members
Articles / Programming Languages / C#

Building an MVP Framework for .NET. Part 4: Strongly Typed Associations

Rate me:
Please Sign up or sign in to vote.
4.86/5 (4 votes)
25 Apr 2008Ms-PL2 min read 27.5K   339   31  
In this article we continue developing a Model-View-Presenter framework for .NET platform. The new features we are implementing here are strongly typed asscoiations between controllers, views and tasks for higher convenience and type safety.
//===========================================
// MVC# Framework | www.MVCSharp.org        |
// ------------------------------------------
// Copyright (C) 2008 www.MVCSharp.org      |
// All rights reserved.                     |
//===========================================

using System;
using System.Text;
using System.Collections;

namespace MVCSharp.Core.Configuration.Views
{
    #region Documentation
    /// <summary>
    /// Represents an enumerable collection of <see cref="ViewInfo"/> objects
    /// with an indexer to retrieve an element by the view name.
    /// </summary>
    /// <remarks>
    /// Before a task is started the ViewInfoCollection object is stored
    /// within the <see cref="MVCSharp.Core.Configuration.Tasks.TaskInfo.ViewInfos">TaskInfo.ViewInfos</see> property.
    /// After a task is started the corresponding <see cref="MVCSharp.Core.Views.IViewsManager"/> is linked
    /// to this ViewInfoCollection object via its <see cref="MVCSharp.Core.Views.IViewsManager.ViewInfos">
    /// IViewsManager.ViewInfos</see> property.</remarks>
    /// <seealso cref="MVCSharp.Core.Views.IViewsManager.ViewInfos"/>
    /// <seealso cref="MVCConfiguration.ViewInfosByTask"/>
    #endregion
    public class ViewInfoCollection : IEnumerable
    {
        private Hashtable viewInfoCollection = new Hashtable();

        #region Documentation
        /// <summary>
        /// Indexer to retrieve ViewInfo object by the view name.
        /// </summary>
        #endregion
        public ViewInfo this[string viewName]
        {
            get { return viewInfoCollection[viewName] as ViewInfo; }
            set { viewInfoCollection[viewName] = value; }
        }

        #region Documentation
        /// <summary>
        /// Adds ViewInfo object to the collection.
        /// </summary>
        #endregion
        public virtual void Add(ViewInfo viewInf)
        {
            this[viewInf.ViewName] = viewInf;
        }

        #region Documentation
        /// <summary>
        /// Adds all items from another collection to this one.
        /// </summary>
        #endregion
        public void Add(ViewInfoCollection viewInfColl)
        {
            foreach (ViewInfo vi in viewInfColl)
                Add(vi);
        }

        #region Documentation
        /// <summary>
        /// Returns the number of <c>ViewInfo</c> objects
        /// in the collection.
        /// </summary>
        #endregion
        public int Count
        {
            get { return viewInfoCollection.Count; }
        }

        #region Documentation
        /// <summary>
        /// Implementation of <see cref="IEnumerable.GetEnumerator"/>
        /// method. Returns an enumerator through the collection of
        /// <c>ViewInfo</c> objects.
        /// </summary>
        #endregion
        public IEnumerator GetEnumerator()
        {
            return viewInfoCollection.Values.GetEnumerator();
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Microsoft Public License (Ms-PL)


Written By
Team Leader
Russian Federation Russian Federation
Oleg Zhukov, born and living in Russia is Lead Engineer and Project Manager in a company which provides business software solutions. He has graduated from Moscow Institute of Physics and Technology (MIPT) (department of system programming) and has got a M.S. degree in applied physics and mathematics. His research and development work concerns architectural patterns, domain-driven development and systems analysis. Being the adherent of agile methods he applies them extensively in the projects managed by him.

Comments and Discussions