* OdbcCategoryAttribute.cs: fixed namespace
[mono.git] / mcs / class / System.Data / System.Data.Odbc / OdbcCategoryAttribute.cs
1 // 
2 // System.Data.Odbc/OdbcCategoryAttribute.cs
3 //
4 // Author:
5 //   Umadevi S (sumadevi@novell.com)
6 //
7 // Copyright (C) Novell Inc, 2004
8 //
9
10 using System;
11 using System.ComponentModel;
12
13 namespace System.Data.Odbc {
14         [AttributeUsage (AttributeTargets.All)]
15         internal sealed class OdbcCategoryAttribute : CategoryAttribute
16         {
17                 #region Fields
18
19                 string category;
20
21                 #endregion // Fields
22
23                 #region Constructors
24
25                 public OdbcCategoryAttribute (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 }