Class: Glimmer::DSL::TreePropertiesExpression

Inherits:
StaticExpression show all
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

Methods inherited from StaticExpression

inherited

Methods inherited from Expression

#add_content, #textual?, #widget?

Instance Method Details

#can_interpret?(parent, keyword, *args, &block) ⇒ Boolean

Returns:

  • (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
    widget?(parent) and
    parent.swt_widget.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