Class: BibTeX::Comment
Overview
Represents a @comment object.
Instance Attribute Summary collapse
-
#content ⇒ Object
Returns the value of attribute content.
Attributes inherited from Element
Instance Method Summary collapse
-
#initialize(content = '') ⇒ Comment
constructor
A new instance of Comment.
- #to_s(options = {}) ⇒ Object
Methods inherited from Element
#<=>, #added_to_bibliography, #has_type?, #join, #matches?, #meets?, parse, #removed_from_bibliography, #replace, #to_hash, #to_json, #to_xml, #to_yaml, #type
Constructor Details
#initialize(content = '') ⇒ Comment
Returns a new instance of Comment.
257 258 259 |
# File 'lib/bibtex/elements.rb', line 257 def initialize(content = '') @content = content end |
Instance Attribute Details
#content ⇒ Object
Returns the value of attribute content.
255 256 257 |
# File 'lib/bibtex/elements.rb', line 255 def content @content end |
Instance Method Details
#to_s(options = {}) ⇒ Object
261 262 263 |
# File 'lib/bibtex/elements.rb', line 261 def to_s( = {}) "@comment{ #@content }" end |