class Origami::FDF::Revision

Attributes

body[RW]
document[RW]
trailer[R]
xreftable[RW]

Public Class Methods

new(fdf) click to toggle source
# File lib/origami/extensions/fdf.rb, line 92
def initialize(fdf)
    @document = fdf
    @body = {}
    @xreftable = nil
    @trailer = nil
end

Public Instance Methods

each_object(&b) click to toggle source
# File lib/origami/extensions/fdf.rb, line 104
def each_object(&b)
    @body.each_value(&b)
end
objects() click to toggle source
# File lib/origami/extensions/fdf.rb, line 108
def objects
    @body.values
end
trailer=(trl) click to toggle source
# File lib/origami/extensions/fdf.rb, line 99
def trailer=(trl)
    trl.document = @document
    @trailer = trl
end