source: trunk/Include/Classes/System/Xml/XmlText.ab@ 435

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

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

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