Class: Glimmer::DSL::ColumnPropertiesExpression
- Inherits:
-
StaticExpression
- Object
- Expression
- StaticExpression
- Glimmer::DSL::ColumnPropertiesExpression
- Defined in:
- lib/glimmer/dsl/column_properties_expression.rb
Overview
Responsible for providing a readable keyword (command symbol) to capture and return column properties for use in TreeItemsDataBindingCommandHandler
Instance Method Summary collapse
- #can_interpret?(parent, keyword, *args, &block) ⇒ Boolean
- #interpret(parent, keyword, *args, &block) ⇒ Object
Methods inherited from StaticExpression
Methods inherited from Expression
#add_content, #textual?, #widget?
Instance Method Details
#can_interpret?(parent, keyword, *args, &block) ⇒ Boolean
10 11 12 13 14 15 |
# File 'lib/glimmer/dsl/column_properties_expression.rb', line 10 def can_interpret?(parent, keyword, *args, &block) keyword == 'column_properties' and block.nil? and (parent) and parent..is_a?(Table) end |
#interpret(parent, keyword, *args, &block) ⇒ Object
17 18 19 |
# File 'lib/glimmer/dsl/column_properties_expression.rb', line 17 def interpret(parent, keyword, *args, &block) args end |