Add licensing info
[mono.git] / mcs / class / System.Web / System.Web.UI / CssStyleCollection.cs
index ad2da29589b0da0402a47b8bbc1339241e61f6be..b49b5778fe6b3f6b62329e34879ed4b5c940a4fc 100755 (executable)
@@ -8,6 +8,27 @@
 // (C) 2002 Ximian, Inc. (http://www.ximian.com)
 //
 
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
 using System;
 using System.Collections;
 using System.Text;
@@ -25,10 +46,10 @@ namespace System.Web.UI {
                        style = new StateBag ();
                        string st_string = bag ["style"] as string;
                        if (st_string != null)
-                               fillStyle (st_string);
+                               FillStyle (st_string);
                }
-               
-               private void fillStyle (string s)
+
+               internal void FillStyle (string s)
                {
                        int mark = s.IndexOf (':');
                        if (mark == -1)
@@ -51,7 +72,7 @@ namespace System.Web.UI {
                        style.Add (key, value);
                        if (mark + 1 > fullValue.Length)
                                return;
-                       fillStyle (fullValue.Substring (mark + 1));
+                       FillStyle (fullValue.Substring (mark + 1));
                }
 
                private string BagToString ()