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