class FXF::Parser::ObjectHolder

Objects of this class are placeholders for objects that have been serialized. This class is used by FXF::Parser and is not meant to be used directly.

Attributes

clss[R]
details[R]
scope[R]

Public Class Methods

new(scope, clss, details) click to toggle source
# File lib/fxf.rb, line 456
def initialize(scope, clss, details)
        @scope = scope
        @clss = clss
        @details = details
end