2004-04-05 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / System.XML / System.Xml / IXPathEditor.cs
1 //
2 // IXPathEditor.cs
3 //
4 // Author:
5 //      Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
6 //
7 #if NET_1_2
8
9 using System;
10
11 namespace System.Xml
12 {
13         public interface IXPathEditor
14         {
15                 XmlWriter CreateAttributes ();
16
17                 XmlWriter CreateFirstChild ();
18
19                 XmlWriter CreateNextSibling ();
20
21                 void DeleteCurrent ();
22
23                 void SetValue (string value);
24         }
25
26
27 }
28 #endif