2006-10-18 Igor Zelmanovich <igorz@mainsoft.com>
[mono.git] / mcs / class / System.Web / System.Web.UI.WebControls / BorderStyle.cs
old mode 100755 (executable)
new mode 100644 (file)
index 0c57408..90829be
@@ -1,4 +1,10 @@
-
+//
+// System.Web.UI.WebControls.BorderStyle.cs
+//
+// Author:
+//      Dick Porter  <dick@ximian.com>
+//
+// Copyright (C) 2005 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
 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
-/**\r
- * Namespace: System.Web.UI.WebControls\r
- * Enumeration: BorderStyle\r
- *\r
- * Author:  Gaurav Vaish\r
- * Maintainer: gvaish@iitk.ac.in\r
- * Contact: <my_scripts2001@yahoo.com>, <gvaish@iitk.ac.in>\r
- * Implementation: yes\r
- * Status: 100%\r
- *\r
- * (C) Gaurav Vaish (2001)\r
- */\r
-\r
-namespace System.Web.UI.WebControls\r
-{\r
-       public enum BorderStyle\r
-       {\r
-               NotSet,\r
-               None,\r
-               Dotted,\r
-               Dashed,\r
-               Solid,\r
-               Double,\r
-               Groove,\r
-               Ridge,\r
-               Inset,\r
-               Outset\r
-       }\r
-}\r
+
+namespace System.Web.UI.WebControls {
+#if !NET_2_0
+       [Serializable]
+#endif
+       public enum BorderStyle {
+               NotSet,
+               None,
+               Dotted,
+               Dashed,
+               Solid,
+               Double,
+               Groove,
+               Ridge,
+               Inset,
+               Outset
+       }
+}