2010-07-25 Carlos Alberto Cortez <calberto.cortez@gmail.com>
[mono.git] / mcs / class / System.Drawing / System.Drawing / SolidBrush.jvm.cs
1 //
2 // System.Drawing.SolidBrush.cs
3 //
4 // Author:
5 //   Dennis Hayes (dennish@Raytek.com)
6 //   Alexandre Pigolkine(pigolkine@gmx.de)
7 //   Ravindra (rkumar@novell.com)
8 //
9 // (C) 2002 Ximian, Inc.
10 // (C) 2004 Novell, Inc.
11 //
12
13 //
14 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
15 //
16 // Permission is hereby granted, free of charge, to any person obtaining
17 // a copy of this software and associated documentation files (the
18 // "Software"), to deal in the Software without restriction, including
19 // without limitation the rights to use, copy, modify, merge, publish,
20 // distribute, sublicense, and/or sell copies of the Software, and to
21 // permit persons to whom the Software is furnished to do so, subject to
22 // the following conditions:
23 // 
24 // The above copyright notice and this permission notice shall be
25 // included in all copies or substantial portions of the Software.
26 // 
27 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
28 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
29 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
30 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
31 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
32 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
33 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
34 //
35 using System;
36 namespace System.Drawing
37 {
38         public sealed class SolidBrush : Brush
39         {
40                 internal bool isModifiable = true;
41                 Color _color;
42
43                 protected override java.awt.Paint NativeObject {\r
44                         get {\r
45                                 return _color.NativeObject;\r
46                         }\r
47                 }\r
48         
49                 public SolidBrush (Color color)
50                 {
51                         _color = color;
52                 }
53
54                 public Color Color {
55                         get {
56                                 return _color;
57                         }
58                         set {
59                                 if (isModifiable)                                       
60                                         _color = value;
61                                 else
62                                         throw new ArgumentException ("This SolidBrush object can't be modified.");
63                         }
64                 }
65                 
66                 public override object Clone()
67                 {
68                         return new SolidBrush(_color);
69                 }
70                 
71                 protected override void Dispose (bool disposing)
72                 {
73                         if (!isModifiable && disposing)\r
74                                 throw new ArgumentException ("This SolidBrush object can't be modified.");\r
75                 }\r
76         }
77 }