X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=mcs%2Fclass%2FSystem.Web%2FSystem.Web.UI.WebControls%2FValidationDataType.cs;h=5d25210c4efdeca83c170af242c73e41c9e7dc18;hb=427e3f59fe9ada440982f9ed7dab0b476606302a;hp=cb61dc535dafc7dcde9e43cb98e7e87674165351;hpb=6b6435d1b3206b0162c37e5ecce8d9a699fe6467;p=mono.git diff --git a/mcs/class/System.Web/System.Web.UI.WebControls/ValidationDataType.cs b/mcs/class/System.Web/System.Web.UI.WebControls/ValidationDataType.cs old mode 100755 new mode 100644 index cb61dc535da..5d25210c4ef --- a/mcs/class/System.Web/System.Web.UI.WebControls/ValidationDataType.cs +++ b/mcs/class/System.Web/System.Web.UI.WebControls/ValidationDataType.cs @@ -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 @@ -19,27 +24,17 @@ // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // -/** - * Namespace: System.Web.UI.WebControls - * Enumeration: ValidationDataType - * - * Author: Gaurav Vaish - * Maintainer: gvaish@iitk.ac.in - * Contact: , - * Implementation: yes - * Status: 100% - * - * (C) Gaurav Vaish (2001) - */ - -namespace System.Web.UI.WebControls -{ - public enum ValidationDataType - { - String, - Integer, - Double, - Date, - Currency - } -} + +using System; + +namespace System.Web.UI.WebControls { + + public enum ValidationDataType + { + String, + Integer, + Double, + Date, + Currency + } +}