Last change
on this file since 441 was 424, checked in by dai, 17 years ago |
System.Xml関連のクラスを仮実装してみた(まだ満足な機能レベルではない…)。
|
File size:
513 bytes
|
Rev | Line | |
---|
[424] | 1 | Namespace System
|
---|
| 2 | Namespace Xml
|
---|
| 3 |
|
---|
| 4 | /*!
|
---|
| 5 | @brief XML 宣言ノード <?xml version='1.0' ...?> を表します。
|
---|
| 6 | */
|
---|
| 7 | Class XmlDeclaration
|
---|
| 8 | Inherits XmlLinkedNode
|
---|
| 9 |
|
---|
| 10 | version As String
|
---|
| 11 | encoding As String
|
---|
| 12 | standalone As String
|
---|
| 13 |
|
---|
| 14 | Public
|
---|
| 15 | Sub XmlDeclaration( version As String, encoding As String, standalone As String, doc As XmlDocument )
|
---|
| 16 | XmlLinkedNode( "", "xml", "", doc )
|
---|
| 17 | This.version = version
|
---|
| 18 | This.encoding = encoding
|
---|
| 19 | This.standalone = standalone
|
---|
| 20 | End Sub
|
---|
| 21 | End Class
|
---|
| 22 |
|
---|
| 23 |
|
---|
| 24 | End Namespace
|
---|
| 25 | End Namespace
|
---|
Note:
See
TracBrowser
for help on using the repository browser.