class Ekispert::Information::Exit

Attributes

comment_list[R]
name_list[R]

Public Class Methods

new(element) click to toggle source
Calls superclass method Ekispert::EkispertBase::new
# File lib/ekispert/information/exit.rb, line 6
def initialize(element)
  @name_list = []
  @comment_list = []
  super(element)
end

Public Instance Methods

comment() click to toggle source
# File lib/ekispert/information/exit.rb, line 16
def comment
  @comment_list[0]&.text
end
name() click to toggle source
# File lib/ekispert/information/exit.rb, line 12
def name
  @name_list[0]&.text
end