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

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

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

File size: 410 bytes
Line 
1Namespace System
2Namespace Xml
3
4/*!
5@brief 属性を表します。
6*/
7Class XmlAttribute
8 Inherits XmlNode
9
10Public
11 Sub XmlAttribute( prefix As String, localName As String, namespaceURI As String, doc As XmlDocument )
12 XmlNode( prefix, localName, namespaceURI, doc )
13 End Sub
14End Class
15
16TypeDef XmlAttributeCollection = System.Collections.Generic.List<XmlAttribute>
17
18
19End Namespace
20End Namespace
Note: See TracBrowser for help on using the repository browser.