2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / class / WindowsBase / System.ComponentModel / DependencyPropertyDescriptor.cs
blob0d0dbce898b3d7517a158db2812f5abb872f8e66
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) 2008 Novell, Inc. (http://www.novell.com)
22 // Authors:
23 // Chris Toshok (toshok@ximian.com)
26 using System;
27 using System.Windows;
29 namespace System.ComponentModel {
31 public sealed class DependencyPropertyDescriptor : PropertyDescriptor {
32 internal DependencyPropertyDescriptor () : base (null)
36 public override AttributeCollection Attributes
38 get { throw new NotImplementedException (); }
40 public override string Category
42 get { throw new NotImplementedException (); }
44 public override Type ComponentType
46 get { throw new NotImplementedException (); }
48 public override TypeConverter Converter
50 get { throw new NotImplementedException (); }
52 public DependencyProperty DependencyProperty
54 get { throw new NotImplementedException (); }
56 public override string Description
58 get { throw new NotImplementedException (); }
60 public override bool DesignTimeOnly
62 get { throw new NotImplementedException (); }
64 public override string DisplayName
66 get { throw new NotImplementedException (); }
68 public bool IsAttached
70 get { throw new NotImplementedException (); }
72 public override bool IsBrowsable
74 get { throw new NotImplementedException (); }
76 public override bool IsLocalizable
78 get { throw new NotImplementedException (); }
80 public override bool IsReadOnly
82 get { throw new NotImplementedException (); }
84 public PropertyMetadata Metadata
86 get { throw new NotImplementedException (); }
88 public override Type PropertyType
90 get { throw new NotImplementedException (); }
92 public override bool SupportsChangeEvents
94 get { throw new NotImplementedException (); }
97 public override void AddValueChanged (object component, EventHandler handler)
99 throw new NotImplementedException ();
101 public override bool CanResetValue (object component)
103 throw new NotImplementedException ();
105 public override bool Equals (object obj)
107 throw new NotImplementedException ();
109 public override PropertyDescriptorCollection GetChildProperties (object instance, Attribute[] filter)
111 throw new NotImplementedException ();
113 public override object GetEditor (Type editorBaseType)
115 throw new NotImplementedException ();
117 public override int GetHashCode ()
119 throw new NotImplementedException ();
121 public override object GetValue (object component)
123 throw new NotImplementedException ();
125 public override void RemoveValueChanged (object component, EventHandler handler)
127 throw new NotImplementedException ();
129 public override void ResetValue (object component)
131 throw new NotImplementedException ();
133 public override void SetValue (object component, object value)
135 throw new NotImplementedException ();
137 public override bool ShouldSerializeValue (object component)
139 throw new NotImplementedException ();
141 public override string ToString ()
143 throw new NotImplementedException ();
146 public static DependencyPropertyDescriptor FromName (string name, Type ownerType, Type targetType)
148 throw new NotImplementedException ();
150 public static DependencyPropertyDescriptor FromProperty (PropertyDescriptor Property)
152 throw new NotImplementedException ();
154 public static DependencyPropertyDescriptor FromProperty (DependencyProperty dependencyProperty, Type targetType)
156 throw new NotImplementedException ();
159 public CoerceValueCallback DesignerCoerceValueCallback {
160 get { throw new NotImplementedException (); }
161 set { throw new NotImplementedException (); }