/NfoLibrary/Actor/ActorList.vb
# · Visual Basic · 31 lines · 20 code · 11 blank · 0 comment · 0 complexity · ad2390b49c65d35f39cf76a4c61881d2 MD5 · raw file
- Imports ProtoXML
-
-
- Public Class ActorList
- Inherits ProtoFlatList(Of Actor)
-
- Private Sub New()
- MyBase.New(Nothing, Nothing)
- Throw New NotImplementedException()
- End Sub
-
- Public Sub New(ByRef Parent As IProtoXBase, ByVal NodeName As String)
- MyBase.New(Parent, NodeName)
- End Sub
-
-
- Public Overrides Sub ProcessNode(ByRef Element As System.Xml.Linq.XElement)
-
- Dim NewActor As New Actor()
- NewActor.ParentClass = Me
- NewActor.ProcessNode(Element)
-
- Me.Add(NewActor)
-
- End Sub
-
- Public Overrides Function CreateNew() As ProtoXML.IProtoXChild
- Return New ActorList
- End Function
-
- End Class