Base class for all nodes which deal with simple text lines.
[Source]
# File lib/webgen/sipttra_format.rb, line 48 48: def initialize( text ) 49: @text = text 50: end
# File lib/webgen/sipttra_format.rb, line 52 52: def to_line 53: @text 54: end
# File lib/webgen/sipttra_format.rb, line 56 56: def to_s 57: @text 58: end
[Validate]