Class: PADK

Inherits:
CommonLib::TranslationTable show all
Defined in:
lib/common_lib/translation_table.rb

Class Method Summary collapse

Methods inherited from CommonLib::TranslationTable

[], selector_options, valid_values

Class Method Details

.tableObject



114
115
116
117
118
119
120
# File 'lib/common_lib/translation_table.rb', line 114

def self.table
  @@table ||= [
    { :value => 1,   :short => 'present', :long => "Present" },
    { :value => 2,   :short => 'absent',  :long => "Absent" },
    { :value => 999, :short => 'dk',      :long => "Don't Know" }
  ]
end