2004-03-29 Umadevi S (sumadevi@novell.com)
[mono.git] / mcs / class / System.Data / System.Data / DataCategoryAttribute.cs
1 // 
2 // System.Data/DataCategoryAttribute.cs
3 //
4 // Author:
5 //   Tim Coleman (tim@timcoleman.com)
6 //
7 // Copyright (C) Tim Coleman, 2002
8 //
9
10 using System;
11 using System.ComponentModel;
12
13 namespace System.Data {
14         [AttributeUsage (AttributeTargets.All)]
15         internal sealed class DataCategoryAttribute : CategoryAttribute
16         {
17                 #region Fields
18
19                 string category;
20
21                 #endregion // Fields
22
23                 #region Constructors
24
25                 public DataCategoryAttribute (string category)
26                 {
27                         this.category = category; 
28                 }
29
30                 #endregion // Constructors
31
32                 #region Methods
33
34                 [MonoTODO]
35                 protected override string GetLocalizedString (string value)
36                 {
37                         throw new NotImplementedException ();
38                 }
39
40                 #endregion // Methods
41         }
42 }