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