Sha256: 7f16c90f4c3e03263cd671b0768092db3450ec7f7e83bd0ee05b5ad2d44f32ad
Contents?: true
Size: 884 Bytes
Versions: 1
Compression:
Stored size: 884 Bytes
Contents
module Eddy module Elements # - Id: I15 # - Name: Component Element Separator # - Type: N/A (Type is not applicable) # - Min/Max: 1/1 # - Description: # - The component element separator is a delimiter and not a data element; # - this field provides the delimiter used to separate component data elements within a composite data structure; # - this value must be different than the data element separator and the segment terminator class ComponentElementSeparator # @return [void] def initialize() @id = "I15" @name = "Component Element Separator" @type = "AN" self.min = 1 self.max = 1 end # @return [String] def value() return ">" end # @return [void] def value=(_arg) # FIXME: Need to implement this... end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
eddy-0.1.0 | lib/eddy/definitions/manual/elements/I15.component_element_separator.rb |