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.
-
#document ⇒ Object
Returns the value of attribute document.
-
#trailer ⇒ Object
Returns the value of attribute trailer.
-
#xreftable ⇒ Object
Returns the value of attribute xreftable.
Instance Method Summary collapse
- #each_object(&b) ⇒ Object
-
#initialize(fdf) ⇒ Revision
constructor
A new instance of Revision.
- #objects ⇒ Object
Constructor Details
#initialize(fdf) ⇒ Revision
Returns a new instance of Revision.
92 93 94 95 96 97 |
# File 'lib/origami/extensions/fdf.rb', line 92 def initialize(fdf) @document = fdf @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 |
#document ⇒ Object
Returns the value of attribute document.
88 89 90 |
# File 'lib/origami/extensions/fdf.rb', line 88 def document @document end |
#trailer ⇒ Object
Returns the value of attribute trailer.
90 91 92 |
# File 'lib/origami/extensions/fdf.rb', line 90 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 |