Class: OpenEHR::AQL::Model::Parameter
- Inherits:
-
Object
- Object
- OpenEHR::AQL::Model::Parameter
- Defined in:
- lib/openehr/aql/model/predicate.rb
Overview
PARAMETER: '$' IDENTIFIER_CHAR ;
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize(name:) ⇒ Parameter
constructor
A new instance of Parameter.
Constructor Details
#initialize(name:) ⇒ Parameter
Returns a new instance of Parameter.
77 78 79 80 |
# File 'lib/openehr/aql/model/predicate.rb', line 77 def initialize(name:) @name = name freeze end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
75 76 77 |
# File 'lib/openehr/aql/model/predicate.rb', line 75 def name @name end |