# File lib/tapkit/control/fault.rb, line 144
                def method_missing( name, *args, &block )
                        if @array.respond_to? name then
                                will_read
                                @array.__send__(name, *args, &block)
                        else
                                raise NoMethodError, "undefined method '#{name.to_s}' for #{self.class}"
                        end
                end