Click here to Skip to main content
15,881,248 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.4K   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;

namespace MVCSharp.Core.Configuration.Tasks
{
    #region Documentation
    /// <summary>
    /// With this attribute applied to a task type adjacent interaction
    /// points can be defined. By the term adjacent we mean interaction
    /// points with transitions possible between each two of them.
    /// </summary>
    /// <remarks>
    /// This attribute is valid only if specific <see cref="ITaskInfoProvider"/>
    /// implementations are used: <see cref="TaskInfoByAttributesProvider"/> or
    /// a composite <see cref="DefaultTaskInfoProvider"/>.
    /// </remarks>
    /// <example>
    /// The code below declares a task with three interaction points,
    /// and transitions possible between each two of them.
    /// <code>
    /// [AdjacentPoints(View1, View2, View3)]
    /// class MyTask : ITask
    /// {
    ///     [IPoint(typeof(MyController))]
    ///     public const string View1 = "View 1";
    ///     [IPoint(typeof(MyController))]
    ///     public const string View2 = "View 2";
    ///     [IPoint(typeof(MyController))]
    ///     public const string View3 = "View 3";
    /// }
    /// </code>
    /// </example>
    /// <seealso cref="IPointAttribute"/>
    /// <seealso cref="NavTargetAttribute"/>
    #endregion
    [AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
    public class AdjacentPointsAttribute : Attribute
    {
        private string[] adjacentViewNames;

        #region Documentation
        /// <summary>
        /// Constructor taking an array of adjacent view names.
        /// </summary>
        #endregion
        public AdjacentPointsAttribute(params string[] adjacentViewNames)
        {
            this.adjacentViewNames = adjacentViewNames;
        }

        #region Documentation
        /// <summary>
        /// Gets or sets the array of adjacent view names.
        /// </summary>
        #endregion
        public string[] AdjacentViewNames
        {
            get { return adjacentViewNames; }
            set { adjacentViewNames = value; }
        }
    }
}

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