Class: Murdoc::Paragraph
- Inherits:
-
Object
- Object
- Murdoc::Paragraph
- Defined in:
- lib/murdoc/paragraph.rb
Instance Attribute Summary collapse
-
#annotation ⇒ Object
Returns the value of attribute annotation.
-
#source ⇒ Object
Returns the value of attribute source.
-
#source_type ⇒ Object
Returns the value of attribute source_type.
-
#starting_line ⇒ Object
Returns the value of attribute starting_line.
Instance Method Summary collapse
-
#initialize(source, annotation, starting_line = 0, source_type = nil) ⇒ Paragraph
constructor
A new instance of Paragraph.
Constructor Details
#initialize(source, annotation, starting_line = 0, source_type = nil) ⇒ Paragraph
Returns a new instance of Paragraph.
17 18 19 20 21 22 |
# File 'lib/murdoc/paragraph.rb', line 17 def initialize(source, annotation, starting_line = 0, source_type = nil) self.source = source self.annotation = annotation self.starting_line = starting_line self.source_type = source_type end |
Instance Attribute Details
#annotation ⇒ Object
Returns the value of attribute annotation.
13 14 15 |
# File 'lib/murdoc/paragraph.rb', line 13 def annotation @annotation end |
#source ⇒ Object
Returns the value of attribute source.
12 13 14 |
# File 'lib/murdoc/paragraph.rb', line 12 def source @source end |
#source_type ⇒ Object
Returns the value of attribute source_type.
14 15 16 |
# File 'lib/murdoc/paragraph.rb', line 14 def source_type @source_type end |
#starting_line ⇒ Object
Returns the value of attribute starting_line.
15 16 17 |
# File 'lib/murdoc/paragraph.rb', line 15 def starting_line @starting_line end |