Sha256: e2ac38d04474958b0ef2408df19e96629e038277f3688446133f69aacc161235
Contents?: true
Size: 647 Bytes
Versions: 57
Compression:
Stored size: 647 Bytes
Contents
require 'glimmer/dsl/static_expression' require 'glimmer/swt/table_proxy' module Glimmer module DSL module Opal # Responsible for providing a readable keyword (command symbol) to capture # and return column properties for use in TreeItemsDataBindingCommandHandler class ColumnPropertiesExpression < StaticExpression def can_interpret?(parent, keyword, *args, &block) keyword == 'column_properties' and block.nil? and parent.is_a?(Glimmer::SWT::TableProxy) end def interpret(parent, keyword, *args, &block) args end end end end end
Version data entries
57 entries across 57 versions & 1 rubygems