# File lib/puppet/network/format_handler.rb, line 42
42:     def self.extended(klass)
43:         klass.extend(ClassMethods)
44: 
45:         # LAK:NOTE This won't work in 1.9 ('send' won't be able to send
46:         # private methods, but I don't know how else to do it.
47:         klass.send(:include, InstanceMethods)
48:     end