43 lines
817 B
Ruby
43 lines
817 B
Ruby
module Oga
|
|
module XML
|
|
##
|
|
# The Namespace class contains information about XML namespaces such as the
|
|
# name and URI.
|
|
#
|
|
# @!attribute [r] name
|
|
# @return [String]
|
|
#
|
|
# @!attribute [r] uri
|
|
# @return [String]
|
|
#
|
|
class Namespace
|
|
attr_accessor :name, :uri
|
|
|
|
##
|
|
# @param [Hash] options
|
|
#
|
|
# @option options [String] :name
|
|
# @option options [String] :uri
|
|
#
|
|
def initialize(options = {})
|
|
@name = options[:name]
|
|
@uri = options[:uri]
|
|
end
|
|
|
|
##
|
|
# @return [String]
|
|
#
|
|
def to_s
|
|
return name.to_s
|
|
end
|
|
|
|
##
|
|
# @return [String]
|
|
#
|
|
def inspect
|
|
return "Namespace(name: #{name.inspect} uri: #{uri.inspect})"
|
|
end
|
|
end # Namespace
|
|
end # XML
|
|
end # Oga
|