Class: OpenEHR::AQL::Model::ContainmentOr
- Inherits:
-
Object
- Object
- OpenEHR::AQL::Model::ContainmentOr
- Defined in:
- lib/openehr/aql/model/containment.rb
Overview
containsExpr : ... | containsExpr OR containsExpr | ... ;
Instance Attribute Summary collapse
-
#left ⇒ Object
readonly
Returns the value of attribute left.
-
#right ⇒ Object
readonly
Returns the value of attribute right.
Instance Method Summary collapse
-
#initialize(left:, right:) ⇒ ContainmentOr
constructor
A new instance of ContainmentOr.
Constructor Details
#initialize(left:, right:) ⇒ ContainmentOr
Returns a new instance of ContainmentOr.
37 38 39 40 41 |
# File 'lib/openehr/aql/model/containment.rb', line 37 def initialize(left:, right:) @left = left @right = right freeze end |
Instance Attribute Details
#left ⇒ Object (readonly)
Returns the value of attribute left.
35 36 37 |
# File 'lib/openehr/aql/model/containment.rb', line 35 def left @left end |
#right ⇒ Object (readonly)
Returns the value of attribute right.
35 36 37 |
# File 'lib/openehr/aql/model/containment.rb', line 35 def right @right end |