module Oga::XML::ExpandedName

Public Instance Methods

expanded_name() click to toggle source

Returns the expanded name of the current Element or Attribute.

@return [String]

# File lib/oga/xml/expanded_name.rb, line 7
def expanded_name
  namespace_name ? "#{namespace_name}:#{name}" : name
end