Class: CmisServer::Query::OrderByItem

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(property, direction) ⇒ OrderByItem

Returns a new instance of OrderByItem.



270
271
272
273
# File 'lib/cmis_server/query/simple_parser.rb', line 270

def initialize(property, direction)
  @property = property
  @direction = direction
end

Instance Attribute Details

#directionObject

Returns the value of attribute direction.



268
269
270
# File 'lib/cmis_server/query/simple_parser.rb', line 268

def direction
  @direction
end

#propertyObject

Returns the value of attribute property.



268
269
270
# File 'lib/cmis_server/query/simple_parser.rb', line 268

def property
  @property
end