Class: Riddl::Utils::Properties::HandlerBase
- Inherits:
-
Object
- Object
- Riddl::Utils::Properties::HandlerBase
- Defined in:
- lib/ruby/riddl/utils/properties.rb
Overview
Overloadable and Backends
Instance Method Summary collapse
- #create ⇒ Object
- #delete ⇒ Object
-
#initialize(data) ⇒ HandlerBase
constructor
{{{.
- #property(p) ⇒ Object
- #read ⇒ Object
- #update ⇒ Object
Constructor Details
#initialize(data) ⇒ HandlerBase
{{{
47 48 49 50 |
# File 'lib/ruby/riddl/utils/properties.rb', line 47 def initialize(data) @data = data @property = nil end |
Instance Method Details
#create ⇒ Object
55 |
# File 'lib/ruby/riddl/utils/properties.rb', line 55 def create; end |
#delete ⇒ Object
58 |
# File 'lib/ruby/riddl/utils/properties.rb', line 58 def delete; end |
#property(p) ⇒ Object
51 52 53 54 |
# File 'lib/ruby/riddl/utils/properties.rb', line 51 def property(p) @property = p self end |
#read ⇒ Object
56 |
# File 'lib/ruby/riddl/utils/properties.rb', line 56 def read; end |
#update ⇒ Object
57 |
# File 'lib/ruby/riddl/utils/properties.rb', line 57 def update; end |