2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / class / System.Drawing / System.Drawing / SolidBrush.jvm.cs
blobed9a06f99be9fe2900ba24768913566ab42d6ac5
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.
14 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
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.
35 using System;
36 namespace System.Drawing
38 public sealed class SolidBrush : Brush
40 internal bool isModifiable = true;
41 Color _color;
43 protected override java.awt.Paint NativeObject {
44 get {
45 return _color.NativeObject;
49 public SolidBrush (Color color)
51 _color = color;
54 public Color Color {
55 get {
56 return _color;
58 set {
59 if (isModifiable)
60 _color = value;
61 else
62 throw new ArgumentException ("This SolidBrush object can't be modified.");
66 public override object Clone()
68 return new SolidBrush(_color);
71 protected override void Dispose (bool disposing)
73 if (!isModifiable && disposing)
74 throw new ArgumentException ("This SolidBrush object can't be modified.");