Class: Origami::FDF::Revision
- Inherits:
-
Object
- Object
- Origami::FDF::Revision
- Defined in:
- lib/origami/extensions/fdf.rb
Overview
:nodoc;
Instance Attribute Summary collapse
-
#body ⇒ Object
Returns the value of attribute body.
-
#pdf ⇒ Object
Returns the value of attribute pdf.
-
#trailer ⇒ Object
Returns the value of attribute trailer.
-
#xreftable ⇒ Object
Returns the value of attribute xreftable.
Instance Method Summary collapse
-
#initialize(adbk) ⇒ Revision
constructor
A new instance of Revision.
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
#body ⇒ Object
Returns the value of attribute body.
89 90 91 |
# File 'lib/origami/extensions/fdf.rb', line 89 def body @body end |
#pdf ⇒ Object
Returns the value of attribute pdf.
88 89 90 |
# File 'lib/origami/extensions/fdf.rb', line 88 def pdf @pdf end |
#trailer ⇒ Object
Returns the value of attribute trailer.
89 90 91 |
# File 'lib/origami/extensions/fdf.rb', line 89 def trailer @trailer end |
#xreftable ⇒ Object
Returns the value of attribute xreftable.
89 90 91 |
# File 'lib/origami/extensions/fdf.rb', line 89 def xreftable @xreftable end |