1 #Region "Microsoft.VisualBasic::a1cbaff347709899359781453b08730a, Microsoft.VisualBasic.Core\Text\Xml\Models\StringValue.vb"
2
3     ' Author:
4     
5     '       asuka (amethyst.asuka@gcmodeller.org)
6     '       xie (genetics@smrucc.org)
7     '       xieguigang (xie.guigang@live.com)
8     
9     ' Copyright (c) 2018 GPL3 Licensed
10     
11     
12     ' GNU GENERAL PUBLIC LICENSE (GPL3)
13     
14     
15     ' This program is free software: you can redistribute it and/or modify
16     ' it under the terms of the GNU General Public License as published by
17     ' the Free Software Foundation, either version 3 of the License, or
18     ' (at your option) any later version.
19     
20     ' This program is distributed in the hope that it will be useful,
21     ' but WITHOUT ANY WARRANTY; without even the implied warranty of
22     ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23     ' GNU General Public License for more details.
24     
25     ' You should have received a copy of the GNU General Public License
26     ' along with this program. If not, see <http://www.gnu.org/licenses/>.
27
28
29
30     ' /********************************************************************************/
31
32     ' Summaries:
33
34     '     Class StringValue
35     
36     '         Properties: value
37     
38     '         FunctionToString
39     
40     '     Structure LineValue
41     
42     '         Properties: line, text
43     
44     '         FunctionToString
45     
46     
47     ' /********************************************************************************/
48
49 #End Region
50
51 Imports System.Xml.Serialization
52 Imports Microsoft.VisualBasic.Language
53
54 Namespace Text.Xml.Models
55
56     Public Class StringValue : Implements Value(Of String).IValueOf
57
58         ''' <summary>
59         ''' A short text value without new line symbols
60         ''' </summary>
61         ''' <returns></returns>
62         <XmlAttribute>
63         Public Property value As String Implements Value(Of String).IValueOf.Value
64
65         Public Overrides Function ToString() As String
66             Return value
67         End Function
68     End Class
69
70     ''' <summary>
71     ''' 代码行的模型?
72     ''' </summary>
73     Public Structure LineValue
74
75         <XmlAttribute>
76         Public Property line As Integer
77         <XmlText>
78         Public Property text As String
79
80         Public Overrides Function ToString() As String
81             Return $"[{line}]  {text}"
82         End Function
83     End Structure
84 End Namespace