class WsdlMapper::Naming::PropertyName

Represents a name of a ruby property, consisting of its instance variable and its accessors (attribute).

Attributes

attr_name[R]
var_name[R]

Public Class Methods

new(attr_name, var_name) click to toggle source

@param [String] attr_name Name for the attribute accessors @param [String] var_name Name for the instance variable

# File lib/wsdl_mapper/naming/property_name.rb, line 10
def initialize(attr_name, var_name)
  @attr_name = attr_name
  @var_name = var_name
end