class Utils::UndefinedParam

Attributes

name[R]
original[R]

Public Class Methods

new(name, original = nil) click to toggle source
# File lib/roundtrip_xml/utils.rb, line 13
def initialize(name, original = nil)
  @name = name
  @original = original
end

Public Instance Methods

to_s() click to toggle source
# File lib/roundtrip_xml/utils.rb, line 18
def to_s
  "#{Utils::UNDEFINED_PARAM}:#{@name}"
end