lib/rcap/cap_1_2/geocode.rb in rcap-1.0.1 vs lib/rcap/cap_1_2/geocode.rb in rcap-1.1.0

- old
+ new

@@ -1,22 +1,8 @@ module RCAP module CAP_1_2 class Geocode < Parameter - XML_ELEMENT_NAME = 'geocode' # :nodoc: - XPATH = "cap:#{ XML_ELEMENT_NAME }" # :nodoc: - - def to_xml_element # :nodoc: - xml_element = REXML::Element.new( XML_ELEMENT_NAME ) - xml_element.add_element( NAME_ELEMENT_NAME ).add_text( @name ) - xml_element.add_element( VALUE_ELEMENT_NAME ).add_text( @value ) - xml_element - end - - def self.from_xml_element( geocode_xml_element ) # :nodoc: - self.new( :name => RCAP.xpath_text( geocode_xml_element, NAME_XPATH, Alert::XMLNS ), - :value => RCAP.xpath_text( geocode_xml_element, VALUE_XPATH, Alert::XMLNS )) - end end end end