Class: Stupidedi::Versions::Common::ElementTypes::DT

Inherits:
SimpleElementDef show all
Defined in:
lib/stupidedi/versions/common/element_types/dt.rb

Overview

Simple element definition for date elements

See Also:

Instance Attribute Summary

Attributes inherited from SimpleElementDef

#description, #id, #max_length, #min_length, #name, #parent

Attributes inherited from Schema::AbstractElementDef

#description, #id, #name

Instance Method Summary collapse

Methods inherited from SimpleElementDef

#copy, #empty, #value

Methods inherited from Schema::SimpleElementDef

#code_lists, #component_use, #composite?, #empty, #parent, #parse, #simple?, #simple_use, #value

Methods inherited from Schema::AbstractElementDef

#code_lists, #composite?, #descriptor, #element?, #simple?

Methods included from Inspect

#inspect

Methods inherited from Schema::AbstractDef

#component?, #composite?, #definition?, #descriptor, #element?, #functional_group?, #interchange?, #loop?, #repeated?, #required?, #segment?, #simple?, #table?, #transaction_set?, #usage?

Constructor Details

#initialize(id, name, min_length, max_length, description = nil, parent = nil) ⇒ DT

Returns a new instance of DT.



15
16
17
18
19
20
21
22
23
24
25
26
27
# File 'lib/stupidedi/versions/common/element_types/dt.rb', line 15

def initialize(id, name, min_length, max_length, description = nil, parent = nil)
  super(id, name, min_length, max_length, description, parent)

  unless min_length == 6 or min_length == 8
    raise Exceptions::InvalidSchemaError,
      "min_length must be either 6 or 8"
  end

  unless max_length == 6 or max_length == 8
    raise Exceptions::InvalidSchemaError,
      "max_length must be either 6 or 8"
  end
end

Instance Method Details

#companion



29
30
31
# File 'lib/stupidedi/versions/common/element_types/dt.rb', line 29

def companion
  DateVal
end