Class: CqlRuby::CqlPrefix
- Inherits:
-
Object
- Object
- CqlRuby::CqlPrefix
- Defined in:
- lib/cql_ruby/cql_nodes.rb
Instance Attribute Summary collapse
-
#identifier ⇒ Object
Returns the value of attribute identifier.
-
#name ⇒ Object
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize(name, identifier) ⇒ CqlPrefix
constructor
A new instance of CqlPrefix.
Constructor Details
#initialize(name, identifier) ⇒ CqlPrefix
Returns a new instance of CqlPrefix.
58 59 60 61 62 |
# File 'lib/cql_ruby/cql_nodes.rb', line 58 def initialize( name, identifier ) super() @name = name @identifier = identifier end |
Instance Attribute Details
#identifier ⇒ Object
Returns the value of attribute identifier.
56 57 58 |
# File 'lib/cql_ruby/cql_nodes.rb', line 56 def identifier @identifier end |
#name ⇒ Object
Returns the value of attribute name.
56 57 58 |
# File 'lib/cql_ruby/cql_nodes.rb', line 56 def name @name end |