class Link

def href

def href
  @href unless @href.nil? || @href.empty?
end

def missing_href?

def missing_href?
  href.nil? and @name.nil? and @id.nil?
end