Class: Moxml::Attribute
- Inherits:
-
Node
- Object
- Node
- Moxml::Attribute
show all
- Defined in:
- lib/moxml/attribute.rb
Constant Summary
Constants inherited
from Node
Node::TYPES
Instance Attribute Summary
Attributes inherited from Node
#context, #native
Instance Method Summary
collapse
Methods inherited from Node
#[], #add_child, #add_next_sibling, #add_previous_sibling, #at_xpath, #children, #clone, #document, #each_node, #find, #find_all, #first_child, #has_children?, #initialize, #last_child, #namespaces, #next_sibling, #parent, #previous_sibling, #replace, #to_xml, wrap, #xpath
Methods included from XmlUtils
#encode_entities, #normalize_xml_value, #validate_comment_content, #validate_declaration_encoding, #validate_declaration_standalone, #validate_declaration_version, #validate_element_name, #validate_pi_target, #validate_prefix, #validate_uri
Constructor Details
This class inherits a constructor from Moxml::Node
Instance Method Details
#==(other) ⇒ Object
51
52
53
54
55
|
# File 'lib/moxml/attribute.rb', line 51
def ==(other)
return false unless other.is_a?(Attribute)
name == other.name && value == other.value && namespace == other.namespace
end
|
#attribute? ⇒ Boolean
65
66
67
|
# File 'lib/moxml/attribute.rb', line 65
def attribute?
true
end
|
#element ⇒ Object
42
43
44
|
# File 'lib/moxml/attribute.rb', line 42
def element
adapter.attribute_element(@native)
end
|
#identifier ⇒ String
Returns the primary identifier for this attribute (its name)
15
16
17
|
# File 'lib/moxml/attribute.rb', line 15
def identifier
name
end
|
#name ⇒ Object
5
6
7
|
# File 'lib/moxml/attribute.rb', line 5
def name
@native.name
end
|
#name=(new_name) ⇒ Object
9
10
11
|
# File 'lib/moxml/attribute.rb', line 9
def name=(new_name)
adapter.set_attribute_name(@native, new_name)
end
|
#namespace ⇒ Object
33
34
35
36
|
# File 'lib/moxml/attribute.rb', line 33
def namespace
ns = adapter.namespace(@native)
ns && Namespace.new(ns, context)
end
|
#namespace=(ns) ⇒ Object
38
39
40
|
# File 'lib/moxml/attribute.rb', line 38
def namespace=(ns)
adapter.set_namespace(@native, ns&.native)
end
|
#remove ⇒ Object
46
47
48
49
|
# File 'lib/moxml/attribute.rb', line 46
def remove
adapter.remove_attribute(element, name)
self
end
|
#text ⇒ Object
XPath conversion compatibility - attributes need .text method that returns their value for XPath comparisons
29
30
31
|
# File 'lib/moxml/attribute.rb', line 29
def text
value
end
|
#to_s ⇒ Object
57
58
59
60
61
62
63
|
# File 'lib/moxml/attribute.rb', line 57
def to_s
if namespace&.prefix
"#{namespace.prefix}:#{name}=\"#{value}\""
else
"#{name}=\"#{value}\""
end
end
|
#value ⇒ Object
19
20
21
|
# File 'lib/moxml/attribute.rb', line 19
def value
@native.value
end
|
#value=(new_value) ⇒ Object
23
24
25
|
# File 'lib/moxml/attribute.rb', line 23
def value=(new_value)
adapter.set_attribute_value(@native, new_value)
end
|