Class: CmisServer::Query::Statement::JoinedTable
- Defined in:
- lib/cmis_server/query/statement.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#left ⇒ Object
readonly
Returns the value of attribute left.
-
#right ⇒ Object
readonly
Returns the value of attribute right.
Instance Method Summary collapse
-
#initialize(left, right) ⇒ JoinedTable
constructor
A new instance of JoinedTable.
Constructor Details
#initialize(left, right) ⇒ JoinedTable
Returns a new instance of JoinedTable.
131 132 133 134 |
# File 'lib/cmis_server/query/statement.rb', line 131 def initialize(left, right) @left = left @right = right end |
Instance Attribute Details
#left ⇒ Object (readonly)
Returns the value of attribute left.
136 137 138 |
# File 'lib/cmis_server/query/statement.rb', line 136 def left @left end |
#right ⇒ Object (readonly)
Returns the value of attribute right.
137 138 139 |
# File 'lib/cmis_server/query/statement.rb', line 137 def right @right end |