class Ekispert::Course::Route::Point::Station
Attributes
name_list[RW]
type_list[RW]
yomi_list[RW]
Public Class Methods
new(element)
click to toggle source
Calls superclass method
Ekispert::Course::Route::Point::new
# File lib/ekispert/course/route/point/station.rb, line 8 def initialize(element) @name_list = [] @yomi_list = [] @type_list = [] super(element) end
Public Instance Methods
name()
click to toggle source
# File lib/ekispert/course/route/point/station.rb, line 15 def name @name_list[0].text end
type()
click to toggle source
# File lib/ekispert/course/route/point/station.rb, line 23 def type @type_list[0].text end
yomi()
click to toggle source
# File lib/ekispert/course/route/point/station.rb, line 19 def yomi @yomi_list[0].text end