Class: CmisServer::Query::Statement::QualifiedColumn
- Defined in:
- lib/cmis_server/query/statement.rb
Instance Attribute Summary collapse
-
#column ⇒ Object
readonly
Returns the value of attribute column.
-
#table ⇒ Object
readonly
Returns the value of attribute table.
Instance Method Summary collapse
-
#initialize(column, table, secondary_table = nil) ⇒ QualifiedColumn
constructor
A new instance of QualifiedColumn.
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
#column ⇒ Object (readonly)
Returns the value of attribute column.
91 92 93 |
# File 'lib/cmis_server/query/statement.rb', line 91 def column @column end |
#table ⇒ Object (readonly)
Returns the value of attribute table.
90 91 92 |
# File 'lib/cmis_server/query/statement.rb', line 90 def table @table end |