/Common/Shared/SubtitleList.vb
# · Visual Basic · 32 lines · 21 code · 11 blank · 0 comment · 0 complexity · f0315885a4a5f6ca852ca765e5de9900 MD5 · raw file
- Imports ProtoXML
-
- Public Class SubtitleList
- Inherits ProtoFlatList(Of SubtitleDetails)
-
- Private _node_TvShow As XElement
-
-
- 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 NewSubtitle As New SubtitleDetails()
- NewSubtitle.ParentClass = Me.ParentClass
- NewSubtitle.ProcessNode(Element)
-
- Me.Add(NewSubtitle)
-
- End Sub
-
- Public Overrides Function CreateNew() As ProtoXML.IProtoXChild
- Return New SubtitleList()
- End Function
- End Class