Class: CmisServer::Query::Statement::QualifiedColumn

Inherits:
Node
  • Object
show all
Defined in:
lib/cmis_server/query/statement.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(column, table, secondary_table = nil) ⇒ QualifiedColumn

Returns a new instance of QualifiedColumn.



85
86
87
88
# File 'lib/cmis_server/query/statement.rb', line 85

def initialize(column, table, secondary_table=nil)
  @table = table
  @column = column
end

Instance Attribute Details

#columnObject (readonly)

Returns the value of attribute column.



91
92
93
# File 'lib/cmis_server/query/statement.rb', line 91

def column
  @column
end

#tableObject (readonly)

Returns the value of attribute table.



90
91
92
# File 'lib/cmis_server/query/statement.rb', line 90

def table
  @table
end