lib/glimmer/dsl/opal/column_properties_expression.rb in glimmer-dsl-opal-0.0.9 vs lib/glimmer/dsl/opal/column_properties_expression.rb in glimmer-dsl-opal-0.1.0

- old
+ new

@@ -1,17 +1,17 @@ require 'glimmer/dsl/static_expression' -require 'glimmer/opal/table_proxy' +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::Opal::TableProxy) + parent.is_a?(Glimmer::SWT::TableProxy) end def interpret(parent, keyword, *args, &block) args end