60 lines
1.2 KiB
Ruby
60 lines
1.2 KiB
Ruby
module Oga
|
|
module XML
|
|
##
|
|
# Class for storing information about a single XML attribute.
|
|
#
|
|
# @!attribute [rw] name
|
|
# The name of the attribute.
|
|
# @return [String]
|
|
#
|
|
# @!attribute [rw] namespace
|
|
# The namespace of the attribute.
|
|
# @return [String]
|
|
#
|
|
# @!attribute [rw] value
|
|
# The value of the attribute.
|
|
# @return [String]
|
|
#
|
|
class Attribute
|
|
attr_accessor :name, :namespace, :value
|
|
|
|
##
|
|
# @param [Hash] options
|
|
#
|
|
# @option options [String] :name
|
|
# @option options [String] :namespace
|
|
# @option options [String] :value
|
|
#
|
|
def initialize(options = {})
|
|
@name = options[:name]
|
|
@namespace = options[:namespace]
|
|
@value = options[:value]
|
|
end
|
|
|
|
##
|
|
# @return [String]
|
|
#
|
|
def to_s
|
|
return value.to_s
|
|
end
|
|
|
|
##
|
|
# @return [String]
|
|
#
|
|
def inspect
|
|
segments = []
|
|
|
|
[:name, :namespace, :value].each do |attr|
|
|
value = send(attr)
|
|
|
|
if value and !value.empty?
|
|
segments << "#{attr}: #{value.inspect}"
|
|
end
|
|
end
|
|
|
|
return "Attribute(#{segments.join(' ')})"
|
|
end
|
|
end # Attribute
|
|
end # XML
|
|
end # Oga
|