Class: Applocale::ParseXLSXModule::LangWithColNo
- Inherits:
-
Object
- Object
- Applocale::ParseXLSXModule::LangWithColNo
- Defined in:
- lib/applocale/Core/ParseXLSX/parse_xlsx_module.rb
Instance Attribute Summary collapse
-
#colno ⇒ Object
Returns the value of attribute colno.
-
#header_str ⇒ Object
Returns the value of attribute header_str.
-
#lang ⇒ Object
Returns the value of attribute lang.
Instance Method Summary collapse
-
#initialize(header_str, lang, colno) ⇒ LangWithColNo
constructor
A new instance of LangWithColNo.
- #to_s ⇒ Object
Constructor Details
#initialize(header_str, lang, colno) ⇒ LangWithColNo
Returns a new instance of LangWithColNo.
93 94 95 96 97 |
# File 'lib/applocale/Core/ParseXLSX/parse_xlsx_module.rb', line 93 def initialize(header_str, lang, colno) self.header_str = header_str self.lang = lang self.colno = colno end |
Instance Attribute Details
#colno ⇒ Object
Returns the value of attribute colno.
91 92 93 |
# File 'lib/applocale/Core/ParseXLSX/parse_xlsx_module.rb', line 91 def colno @colno end |
#header_str ⇒ Object
Returns the value of attribute header_str.
91 92 93 |
# File 'lib/applocale/Core/ParseXLSX/parse_xlsx_module.rb', line 91 def header_str @header_str end |
#lang ⇒ Object
Returns the value of attribute lang.
91 92 93 |
# File 'lib/applocale/Core/ParseXLSX/parse_xlsx_module.rb', line 91 def lang @lang end |
Instance Method Details
#to_s ⇒ Object
99 100 101 |
# File 'lib/applocale/Core/ParseXLSX/parse_xlsx_module.rb', line 99 def to_s "{header_str => #{header_str}, lang => #{lang}, colno => #{colno}}" end |