Class: Murdoc::Paragraph

Inherits:
Object
  • Object
show all
Defined in:
lib/murdoc/paragraph.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#annotationObject

Returns the value of attribute annotation.



13
14
15
# File 'lib/murdoc/paragraph.rb', line 13

def annotation
  @annotation
end

#sourceObject

Returns the value of attribute source.



12
13
14
# File 'lib/murdoc/paragraph.rb', line 12

def source
  @source
end

#source_typeObject

Returns the value of attribute source_type.



14
15
16
# File 'lib/murdoc/paragraph.rb', line 14

def source_type
  @source_type
end

#starting_lineObject

Returns the value of attribute starting_line.



15
16
17
# File 'lib/murdoc/paragraph.rb', line 15

def starting_line
  @starting_line
end