Class: Glimmer::DSL::TreePropertiesExpression
- Inherits:
-
StaticExpression
- Object
- Expression
- StaticExpression
- Glimmer::DSL::TreePropertiesExpression
- Defined in:
- lib/glimmer/dsl/tree_properties_expression.rb
Overview
Responsible for providing a readable keyword (command symbol) to capture and return tree 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
12 13 14 15 16 17 |
# File 'lib/glimmer/dsl/tree_properties_expression.rb', line 12 def can_interpret?(parent, keyword, *args, &block) keyword == "tree_properties" and block.nil? and (parent) and parent..is_a?(Tree) end |
#interpret(parent, keyword, *args, &block) ⇒ Object
19 20 21 |
# File 'lib/glimmer/dsl/tree_properties_expression.rb', line 19 def interpret(parent, keyword, *args, &block) args end |