Class: POSNEG

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



123
124
125
126
127
128
# File 'lib/common_lib/translation_table.rb', line 123

def self.table
  @@table ||= [
    { :value => 1,   :short => 'pos', :long => "Positive" },
    { :value => 2,   :short => 'neg', :long => "Negative" }
  ]
end