Ignore:
Timestamp:
Jul 26, 2008, 8:05:09 PM (16 years ago)
Author:
KOBAYASHI, Shinji
Message:

refs #48,#52

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ruby/trunk/lib/models/rm/data_types/text.rb

    r4 r89  
     1# This module implemented from this UML
     2# http://www.openehr.org/uml/release-1.0.1/Browsable/_9_0_76d0249_1109067605961_209522_3179Report.html
     3# Ticket refs #48
    14module OpenEHR
    25  module RM
     
    4447          attr_reader :terminology_id, :code_string
    4548          def initialize(terminology_id, code_string)
    46             if terminlogyID == nil
     49            if terminlogyID.nil?
    4750              raise Exception.new("nil terminology")
    4851            end
    49             if code_string == nil
     52            if code_string.nil?
    5053              raise Exception.new("empty codeString")
    5154            end
Note: See TracChangeset for help on using the changeset viewer.