Class: Origami::FDF::Revision

Inherits:
Object
  • Object
show all
Defined in:
lib/origami/extensions/fdf.rb

Overview

:nodoc;

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(adbk) ⇒ Revision

Returns a new instance of Revision.



91
92
93
94
95
96
# File 'lib/origami/extensions/fdf.rb', line 91

def initialize(adbk)
  @pdf = adbk
  @body = {}
  @xreftable = nil
  @trailer = nil
end

Instance Attribute Details

#bodyObject

Returns the value of attribute body.



89
90
91
# File 'lib/origami/extensions/fdf.rb', line 89

def body
  @body
end

#pdfObject

Returns the value of attribute pdf.



88
89
90
# File 'lib/origami/extensions/fdf.rb', line 88

def pdf
  @pdf
end

#trailerObject

Returns the value of attribute trailer.



89
90
91
# File 'lib/origami/extensions/fdf.rb', line 89

def trailer
  @trailer
end

#xreftableObject

Returns the value of attribute xreftable.



89
90
91
# File 'lib/origami/extensions/fdf.rb', line 89

def xreftable
  @xreftable
end