Class: Sprache
- Inherits:
-
Poolelement
- Object
- Poolelement
- Sprache
- Defined in:
- lib/pkm_level2_converter/types.rb
Overview
Eine Sprache beschreibt das natürliche Format, in dem eine Ausgabe an den Nutzer erfolgt.
Instance Attribute Summary
Attributes inherited from Poolelement
Instance Method Summary collapse
-
#initialize(asst, key, index) ⇒ Sprache
constructor
A new instance of Sprache.
Methods inherited from Poolelement
Constructor Details
#initialize(asst, key, index) ⇒ Sprache
Returns a new instance of Sprache.
71 72 73 74 75 |
# File 'lib/pkm_level2_converter/types.rb', line 71 def initialize(asst, key, index) super(key, index) @nr = asst.at('nr').text.to_i @name = asst.at('name').text end |