Class: Dvi::Tfm::Format::ExtensibleRecipe

Inherits:
Object
  • Object
show all
Defined in:
lib/dvi/tfm/format.rb

Overview

ExtensibleRecipe is a class for extensible recipe section.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(top, mid, bot, rep) ⇒ ExtensibleRecipe

Returns a new instance of ExtensibleRecipe.



34
35
36
37
38
39
# File 'lib/dvi/tfm/format.rb', line 34

def initialize(top, mid, bot, rep)
  @top = top
  @mid = mid
  @bot = bot
  @rep = rep
end

Instance Attribute Details

#botObject (readonly)

Returns the value of attribute bot.



33
34
35
# File 'lib/dvi/tfm/format.rb', line 33

def bot
  @bot
end

#midObject (readonly)

Returns the value of attribute mid.



33
34
35
# File 'lib/dvi/tfm/format.rb', line 33

def mid
  @mid
end

#repObject (readonly)

Returns the value of attribute rep.



33
34
35
# File 'lib/dvi/tfm/format.rb', line 33

def rep
  @rep
end

#topObject (readonly)

Returns the value of attribute top.



33
34
35
# File 'lib/dvi/tfm/format.rb', line 33

def top
  @top
end