source: trunk/Include/Classes/System/Xml/XmlCharacterData.ab@ 424

Last change on this file since 424 was 424, checked in by dai, 16 years ago

System.Xml関連のクラスを仮実装してみた(まだ満足な機能レベルではない…)。

File size: 353 bytes
Line 
1Namespace System
2Namespace Xml
3
4/*!
5@brief 複数のクラスで使用する、テキスト操作メソッドを提供します。
6*/
7Class XmlCharacterData
8 Inherits XmlLinkedNode
9
10Public
11
12 /*!
13 @brief コンストラクタ
14 */
15 Sub XmlCharacterData( data As String, doc As XmlDocument )
16 XmlLinkedNode( data, doc )
17 End Sub
18End Class
19
20
21End Namespace
22End Namespace
Note: See TracBrowser for help on using the repository browser.