Class: ODDB::OdbaExporter::LimitationLine

Inherits:
PackageLine show all
Defined in:
ext/export/src/oddbdat.rb

Constant Summary collapse

LENGTH =
10

Instance Method Summary collapse

Methods inherited from Line

#content, #empty?, #to_s

Constructor Details

#initialize(lim_oid) ⇒ LimitationLine

Returns a new instance of LimitationLine.



619
620
621
622
# File 'ext/export/src/oddbdat.rb', line 619

def initialize(lim_oid)
	@lim_oid = lim_oid
	super
end

Instance Method Details

#structureObject



623
624
625
626
627
628
629
630
631
# File 'ext/export/src/oddbdat.rb', line 623

def structure
	{
		1		=>	'16',
		2		=>	@date,
		3		=>	@lim_oid,
		5		=>	'4',
		6		=>	'COM',
	}
end