Class: CqlRuby::CqlPrefix

Inherits:
Object
  • Object
show all
Defined in:
lib/cql_ruby/cql_nodes.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#identifierObject

Returns the value of attribute identifier.



56
57
58
# File 'lib/cql_ruby/cql_nodes.rb', line 56

def identifier
  @identifier
end

#nameObject

Returns the value of attribute name.



56
57
58
# File 'lib/cql_ruby/cql_nodes.rb', line 56

def name
  @name
end