class Riddl::Utils::Properties::HandlerBase

Overloadable and Backends

Public Class Methods

new(data) click to toggle source
# File lib/ruby/riddl/utils/properties.rb, line 47
def initialize(data)
  @data = data
  @property = nil
end

Public Instance Methods

create() click to toggle source
# File lib/ruby/riddl/utils/properties.rb, line 55
def create; end
delete() click to toggle source
# File lib/ruby/riddl/utils/properties.rb, line 58
def delete; end
property(p) click to toggle source
# File lib/ruby/riddl/utils/properties.rb, line 51
def property(p)
  @property = p
  self
end
read() click to toggle source
# File lib/ruby/riddl/utils/properties.rb, line 56
def read;   end
update() click to toggle source
# File lib/ruby/riddl/utils/properties.rb, line 57
def update; end