Displaying 1 result from an estimated 1 matches for "cll_struct".
Did you mean:
  all_structs
  
2006 Nov 07
0
somebody is calling my setters in the webservices!!!
a simple code to define a web service structures:
class CLL_Answer < CLL_Struct
  member :answer,              :bool
  member :answer_description,  :string
  member :error,               :bool
  member :error_description,   :string
  # This is my setter
  def error_description=(value)
    @answer_description = nil
    @error = true
    @error_description = value
  end
end
an...