Click here to Skip to main content
Click here to Skip to main content

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

By , 25 Apr 2008
 
mvcsharp-0.7.1.zip
MVCSharp
API Docs
CleanUpAll.proj
Examples
ASP.NET MVC Store
ApplicationLogic
Model
NorthwindDataSet.xsc
NorthwindDataSet.xss
Presentation
App_Data
Nwind.mdb
Global.asax
Properties
Tests
Properties
TestApplicationLogic
Tests.csproj.user
Basics (generics used)
ApplicationLogic
Model
Presentation
Web
Global.asax
Win
Properties
Settings.settings
Basics
ApplicationLogic
Model
Presentation
Web
Global.asax
Win
Properties
Settings.settings
SimpleFormsViewsManager
Properties
TestSimpleFormsViewsManager
ApplicationLogic
Presentation
Properties
Settings.settings
TasksInteraction
ApplicationLogic
Model
Presentation
Web
Global.asax
Win
Properties
Settings.settings
WindowsFormsExample
ApplicationLogic
Presentation
Properties
Settings.settings
MVCSharp.Tests
Core
Configuration
Tasks
Views
Tasks
MVCSharp.Tests.csproj.user
Properties
Webforms
Configuration
Winforms
Configuration
MVCSharp
Core
Configuration
Tasks
Views
Tasks
Views
Properties
Webforms
Configuration
Winforms
Configuration
//===========================================
// MVC# Framework | www.MVCSharp.org        |
// ------------------------------------------
// Copyright (C) 2008 www.MVCSharp.org      |
// All rights reserved.                     |
//===========================================

using System;
using System.Text;
using MVCSharp.Core.Configuration.Views;

namespace MVCSharp.Core.Views
{
    #region Documentation
    /// <summary>
    /// Abstracts out the view switching logic. Different IViewsManager
    /// implementations correspond to different presentation platforms.
    /// </summary>
    /// <remarks>
    /// Views managers work tightly in pair with <see cref="Navigator"/>
    /// objects. Each navigator is linked to a views manager to delegate
    /// the view activation job to it. And vice versa: any views manager has
    /// an association to its navigator (<see cref="IViewsManager.Navigator">
    /// IViewsManager.Navigator</see> property), needed to obtain controllers for views.
    /// </remarks>
    /// <seealso cref="MVCSharp.Webforms.WebformsViewsManager"/>
    /// <seealso cref="MVCSharp.Winforms.WinformsViewsManager"/>
    #endregion
    public interface IViewsManager
    {
        #region Documentation
        /// <summary>
        /// Activates a view with specified name.
        /// </summary>
        /// <remarks>Activating a view requires some information about
        /// it (e.g. its type, display method, etc.). Such information is
        /// taken from the <see cref="MVCSharp.Core.Configuration.Tasks.TaskInfo.ViewInfos">
        /// TaskInfo.ViewInfos</see> property.</remarks>
        /// <param name="viewName">The name of the view to activate.</param>
        #endregion
        void ActivateView(string viewName);

        #region Documentation
        /// <summary>
        /// Returns a view with specified name without activating it.
        /// </summary>
        #endregion
        IView GetView(string viewName);

        #region Documentation
        /// <summary>
        /// Connects a views manager to its navigator. A views manager requires
        /// a navigator to obtain controllers for views.
        /// </summary>
        #endregion
        Navigator Navigator
        {
            get;
            set;
        }

        #region Documentation
        /// <summary>
        /// Colection of <see cref="ViewInfo"/> objects describing the views within
        /// the task.
        /// <remarks>The value of this property is taken from the
        /// <see cref="MVCSharp.Core.Configuration.Tasks.TaskInfo.ViewInfos">
        /// TaskInfo.ViewInfos</see> property when the task is started.</remarks>
        /// </summary>
        #endregion
        ViewInfoCollection ViewInfos
        {
            get;
            set;
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of use 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)

About the Author

Oleg Zhukov
Architect
Russian Federation Russian Federation
Member
Oleg Zhukov, born and living in Russia is a software development consultant in a company which provides business 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.

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130516.1 | Last Updated 25 Apr 2008
Article Copyright 2008 by Oleg Zhukov
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid