# File lib_wpm/wpm.rb, line 911
    def find(component_name)
      if (self.component_name == component_name) then
        return self
      else
        for component in @child_components
          if (found_component = component.find(component_name)) then
            return found_component
          end
        end

        return nil
      end
    end