[mono-config] use right type for result of strlen
[mono.git] / mcs / class / System.Web / System.Web.UI.WebControls / ValidationDataType.cs
old mode 100755 (executable)
new mode 100644 (file)
index cb61dc5..5d25210
@@ -1,4 +1,9 @@
-
+//
+// System.Web.UI.WebControls.ValidationSummaryDisplayMode.cs
+//
+// Author: Duncan Mak (duncan@novell.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:     ValidationDataType\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 ValidationDataType\r
-       {\r
-               String,\r
-               Integer,\r
-               Double,\r
-               Date,\r
-               Currency\r
-       }\r
-}\r
+
+using System;
+
+namespace System.Web.UI.WebControls {
+
+       public enum ValidationDataType
+       {
+               String,
+               Integer,
+               Double,
+               Date,
+               Currency
+       }
+}