Class: ADNA
- Inherits:
-
CommonLib::TranslationTable
- Object
- CommonLib::TranslationTable
- ADNA
- Defined in:
- lib/common_lib/translation_table.rb
Class Method Summary collapse
Methods inherited from CommonLib::TranslationTable
[], selector_options, valid_values
Class Method Details
.table ⇒ Object
104 105 106 107 108 109 110 111 |
# File 'lib/common_lib/translation_table.rb', line 104 def self.table @@table ||= [ { :value => 1, :short => 'agree', :long => "Agree" }, { :value => 2, :short => 'disagree', :long => "Do Not Agree" }, { :value => 555, :short => 'na', :long => "N/A" }, { :value => 999, :short => 'dk', :long => "Don't Know" } ] end |