(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System.Web / System.Web.UI.WebControls / DataGridItem.cs
blobed3fb8614b6d93f466af33cfa5d5409c07ac460e
2 //
3 // Permission is hereby granted, free of charge, to any person obtaining
4 // a copy of this software and associated documentation files (the
5 // "Software"), to deal in the Software without restriction, including
6 // without limitation the rights to use, copy, modify, merge, publish,
7 // distribute, sublicense, and/or sell copies of the Software, and to
8 // permit persons to whom the Software is furnished to do so, subject to
9 // the following conditions:
10 //
11 // The above copyright notice and this permission notice shall be
12 // included in all copies or substantial portions of the Software.
13 //
14 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 /**
23 * Namespace: System.Web.UI.WebControls
24 * Class: DataGridItem
26 * Author: Gaurav Vaish
27 * Maintainer: gvaish@iitk.ac.in
28 * Contact: <my_scripts2001@yahoo.com>, <gvaish@iitk.ac.in>
29 * Implementation: yes
30 * Status: 100%
32 * (C) Gaurav Vaish (2002)
35 using System;
36 using System.Web;
37 using System.Web.UI;
39 namespace System.Web.UI.WebControls
41 public class DataGridItem : TableRow, INamingContainer
43 private int itemIndex;
44 private int dataSetIndex;
45 private ListItemType itemType;
46 private object dataItem;
48 public DataGridItem(int itemIndex, int dataSetIndex, ListItemType itemType): base()
50 this.itemIndex = itemIndex;
51 this.dataSetIndex = dataSetIndex;
52 this.itemType = itemType;
55 public virtual object DataItem
57 get
59 return dataItem;
61 set
63 dataItem = value;
67 public virtual int DataSetIndex
69 get
71 return dataSetIndex;
75 public virtual int ItemIndex
77 get
79 return itemIndex;
83 public virtual ListItemType ItemType
85 get
87 return itemType;
91 protected override bool OnBubbleEvent(object source, EventArgs e)
93 if(e is CommandEventArgs)
95 DataGridCommandEventArgs args = new DataGridCommandEventArgs(this, source, (CommandEventArgs)e);
96 RaiseBubbleEvent(this, args);
97 return true;
99 return false;
102 protected internal virtual void SetItemType(ListItemType itemType)
104 this.itemType = itemType;