Ignore:
Timestamp:
Aug 6, 2009, 9:06:59 AM (15 years ago)
Author:
KOBAYASHI, Shinji
Message:

roll back branch 0.0

Location:
ruby/branches/0.0/models/rm/support
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • ruby/branches/0.0/models/rm/support/assumed_types.rb

    r167 r168  
    1 module OpenEhr
     1module OpenEHR
    22  module RM
    33    module Support
    4       module AssumedTypes
     4      module Assumed_Types
    55        class Interval
    66          attr_accessor :lower, :upper
  • ruby/branches/0.0/models/rm/support/definition.rb

    r167 r168  
    1 module OpenEhr
     1module OpenEHR
    22  module RM
    33    module Support
    44      module Definition
    5         module BasicDefinition
     5        module Basic_Definition
    66          CR = "\015"
    77          LF = "\012"
    88        end
    9         class OpenEHRDefinitions
    10           include BasicDefinition
     9        class OpenEHR_Definitions
     10          include Basic_Definition         
    1111        end
    1212      end
  • ruby/branches/0.0/models/rm/support/identification.rb

    r167 r168  
    1 module OpenEhr
     1module OpenEHR
    22  module RM
    33    module Support
  • ruby/branches/0.0/models/rm/support/terminology.rb

    r167 r168  
    11
    2 module OpenEhr
     2module OpenEHR
    33  module RM
    44    module Support
    55      module Terminology
    6         class CodeSetAccess
     6        class Code_Set_Access
    77          def all_codes
    88            raise NotImplementedError, "all_codes must be implemented"
     
    1818          end
    1919        end
    20         module OpenEhrCodeSetIdentifier
     20        module OpenEHR_Code_Set_Identifier
    2121          CODE_SET_ID_CHARACER_SETS = "character sets".freeze
    2222          CODE_SET_ID_COMPRESSION_ALGORITHMS = "compression algorithms".freeze
     
    2929          end
    3030        end
    31         module OpenEhrTerminologyGroupIdentifiers
     31        module OpenEHR_Terminology_Group_Identifiers
    3232          GROUP_ID_ATTESTATION_REASON = "attestation reason".freeze
    3333          GROUP_ID_AUDIT_CHANGE_TYPE = "audit change type".freeze
     
    4646          TERMINOLOGY_ID = "openehr".freeze
    4747        end
    48         class TerminologyAccess
     48        class Terminology_Access
    4949          def all_codes
    5050            raise NotImplementedError, "all_codes is not implemented"
     
    7474          end
    7575        end
    76         class TerminologyService
    77           include OpenEhrCodeSetIdentifier, OpenEhrTerminologyGroupIdentifiers
     76        class Terminology_Service
     77          include OpenEHR_Code_Set_Identifier, OpenEHR_Terminology_Group_Identifiers
    7878          def code_set(name)
    7979            raise NotImplementedError, "code_set is not implemented"
Note: See TracChangeset for help on using the changeset viewer.