2010-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git] / class / Mono.WebBrowser / Mono.Mozilla / DOM / Attribute.cs
blob4d68f9ac283b6bd0c562eeb6b225f4a2557fc74d
1 // Permission is hereby granted, free of charge, to any person obtaining
2 // a copy of this software and associated documentation files (the
3 // "Software"), to deal in the Software without restriction, including
4 // without limitation the rights to use, copy, modify, merge, publish,
5 // distribute, sublicense, and/or sell copies of the Software, and to
6 // permit persons to whom the Software is furnished to do so, subject to
7 // the following conditions:
8 //
9 // The above copyright notice and this permission notice shall be
10 // included in all copies or substantial portions of the Software.
11 //
12 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
13 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
14 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
15 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
16 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
17 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
18 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20 // Copyright (c) 2007, 2008 Novell, Inc.
22 // Authors:
23 // Andreia Gaita (avidigal@novell.com)
26 using System;
27 using System.Runtime.InteropServices;
28 using System.Text;
29 using Mono.WebBrowser;
30 using Mono.WebBrowser.DOM;
32 namespace Mono.Mozilla.DOM
34 internal class Attribute : Node, IAttribute
36 private nsIDOMAttr attribute;
38 public Attribute (WebBrowser control, nsIDOMAttr domAttribute)
39 : base (control, domAttribute as nsIDOMNode)
41 if (control.platform != control.enginePlatform)
42 this.attribute = nsDOMAttr.GetProxy (control, domAttribute);
43 else
44 this.attribute = domAttribute;
47 #region IDisposable Members
48 protected override void Dispose (bool disposing)
50 if (!disposed) {
51 if (disposing) {
52 this.attribute = null;
55 base.Dispose (disposing);
57 #endregion
59 #region IAttribute Members
60 public string Name {
61 get {
62 this.attribute.getName (storage);
63 return Base.StringGet (storage);
67 public new string Value {
68 get {
69 this.attribute.getValue (storage);
70 return Base.StringGet (storage);
72 set {
73 Base.StringSet (storage, value);
74 this.attribute.setValue (storage);
77 #endregion
79 public override int GetHashCode () {
80 return this.hashcode;