Class: AbideDevUtils::XCCDF::Parser::Objects::AttributeValue

Inherits:
ElementBase
  • Object
show all
Defined in:
lib/abide_dev_utils/xccdf/parser/objects.rb

Overview

Represents a value of an element attribute

Instance Attribute Summary collapse

Attributes inherited from ElementBase

#child_labels, #children, #link_labels

Instance Method Summary collapse

Methods inherited from ElementBase

#add_link, #add_links, #all_values, #find_child_by_attribute, #find_child_by_attribute_value, #find_child_by_class, #find_child_by_xpath, #find_children_by_attribute, #find_children_by_attribute_value, #find_children_by_class, #find_children_by_xpath, #find_children_that_respond_to, #label, #method_missing, #recursive_find_child, #recursive_select_children, #respond_to_missing?, #xccdf_type, xpath

Methods included from DigestObject

#digest, #digest_equal?, #digest_similarity, #digestable_instance_variables, #exclude_from_digest, #labeled_self_digest, #non_compatible?, #normalize_exclusion, #sorted_digest_parts, #split_labeled_digest

Constructor Details

#initialize(element, attribute) ⇒ AttributeValue

Returns a new instance of AttributeValue.



278
279
280
281
282
# File 'lib/abide_dev_utils/xccdf/parser/objects.rb', line 278

def initialize(element, attribute)
  super
  @attribute = attribute
  @value = element[attribute]
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class AbideDevUtils::XCCDF::Parser::Objects::ElementBase

Instance Attribute Details

#attributeObject (readonly)

Returns the value of attribute attribute.



276
277
278
# File 'lib/abide_dev_utils/xccdf/parser/objects.rb', line 276

def attribute
  @attribute
end

#valueObject (readonly)

Returns the value of attribute value.



276
277
278
# File 'lib/abide_dev_utils/xccdf/parser/objects.rb', line 276

def value
  @value
end

Instance Method Details

#to_sObject



284
285
286
# File 'lib/abide_dev_utils/xccdf/parser/objects.rb', line 284

def to_s
  "#{@attribute}=#{@value}"
end