X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FSystem.Web%2FSystem.Web.UI.WebControls%2FDayRenderEventArgs.cs;h=6ac506b00c4d9a54ac5202df68bf669b2cd5f93a;hb=69fd76078eb720a89f3420bab3fe1bc919896bec;hp=9edba7ca381ee581efac04d9e9f4d9fa1c5f5d91;hpb=d1c09fcc674eb5bf479db2ba41d24c43ad3c6d4e;p=mono.git diff --git a/mcs/class/System.Web/System.Web.UI.WebControls/DayRenderEventArgs.cs b/mcs/class/System.Web/System.Web.UI.WebControls/DayRenderEventArgs.cs index 9edba7ca381..6ac506b00c4 100644 --- a/mcs/class/System.Web/System.Web.UI.WebControls/DayRenderEventArgs.cs +++ b/mcs/class/System.Web/System.Web.UI.WebControls/DayRenderEventArgs.cs @@ -1,4 +1,9 @@ - +// +// System.Web.UI.WebControls.DayRenderEventArgs.cs +// +// Author: Duncan Mak (duncan@novell.com) +// +// Copyright (C) 2005-2010 Novell, Inc (http://www.novell.com) // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the @@ -19,46 +24,37 @@ // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // -/** - * Namespace: System.Web.UI.WebControls - * Delegate: DayRenderEventArgs - * - * Author: Gaurav Vaish - * Maintainer: gvaish@iitk.ac.in - * Contact: - * Implementation: yes - * Status: 100% - * - * (C) Gaurav Vaish (2001) - */ - -namespace System.Web.UI.WebControls -{ - public sealed class DayRenderEventArgs - { - private TableCell cell; - private CalendarDay day; - - public DayRenderEventArgs(TableCell cell, CalendarDay day) - { - this.cell = cell; - this.day = day; - } - - public TableCell Cell - { - get - { - return cell; - } - } - - public CalendarDay Day - { - get - { - return day; - } - } - } -} + +namespace System.Web.UI.WebControls +{ + public sealed class DayRenderEventArgs + { + TableCell cell; + CalendarDay day; + string _selectUrl; + + public DayRenderEventArgs (TableCell cell, CalendarDay day) + { + this.cell = cell; + this.day = day; + } + + public DayRenderEventArgs (TableCell cell, CalendarDay day, string selectUrl) + : this (cell, day) + { + _selectUrl = selectUrl; + } + + public TableCell Cell { + get { return cell; } + } + + public CalendarDay Day { + get { return day; } + } + + public string SelectUrl { + get { return _selectUrl; } + } + } +}