| 123456789101112131415161718192021222324252627 |
- //
- // System.Web.UI.Design.DataBindingValueUIHandler
- //
- // Authors:
- // Gert Driesen ([email protected])
- //
- // (C) 2004 Novell
- //
- using System.Collections;
- using System.ComponentModel;
- namespace System.Web.UI.Design
- {
- public class DataBindingValueUIHandler
- {
- public DataBindingValueUIHandler ()
- {
- }
- [MonoTODO]
- public void OnGetUIValueItem (ITypeDescriptorContext context, PropertyDescriptor propDesc, ArrayList valueUIItemList)
- {
- throw new NotImplementedException ();
- }
- }
- }
|