Class: Bio::DAS::ENTRY_POINT
- Inherits:
-
Object
- Object
- Bio::DAS::ENTRY_POINT
- Defined in:
- lib/bio/io/das.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#href ⇒ Object
Returns the value of attribute href.
-
#segments ⇒ Object
readonly
Returns the value of attribute segments.
-
#version ⇒ Object
Returns the value of attribute version.
Instance Method Summary collapse
- #each ⇒ Object
-
#initialize ⇒ ENTRY_POINT
constructor
A new instance of ENTRY_POINT.
Constructor Details
#initialize ⇒ ENTRY_POINT
Returns a new instance of ENTRY_POINT.
327 328 329 |
# File 'lib/bio/io/das.rb', line 327 def initialize @segments = Array.new end |
Instance Attribute Details
#href ⇒ Object
Returns the value of attribute href.
331 332 333 |
# File 'lib/bio/io/das.rb', line 331 def href @href end |
#segments ⇒ Object (readonly)
Returns the value of attribute segments.
330 331 332 |
# File 'lib/bio/io/das.rb', line 330 def segments @segments end |
#version ⇒ Object
Returns the value of attribute version.
331 332 333 |
# File 'lib/bio/io/das.rb', line 331 def version @version end |
Instance Method Details
#each ⇒ Object
333 334 335 336 337 |
# File 'lib/bio/io/das.rb', line 333 def each @segments.each do |x| yield x end end |