Class: Glimmer::FX::ControlProxy::AppProxy

Inherits:
Glimmer::FX::ControlProxy show all
Defined in:
lib/glimmer/fx/control_proxy/app_proxy.rb

Overview

Proxy for FX application objects

Follows the Proxy Design Pattern

Constant Summary

Constants inherited from Glimmer::FX::ControlProxy

KEYWORD_ALIASES

Instance Attribute Summary

Attributes inherited from Glimmer::FX::ControlProxy

#args, #block, #content_added, #fx, #keyword, #parent_proxy

Instance Method Summary collapse

Methods inherited from Glimmer::FX::ControlProxy

#children, constant_symbol, #content, control_proxy_class, create, descendant_keyword_constant_map, exists?, fx_class, fx_constant_symbol, #initialize, keyword, map_descendant_keyword_constants_for, #method_missing, #post_add_content, #post_initialize_child, reset_descendant_keyword_constant_map, #respond_to?, #respond_to_fx?, #send_to_fx, #window_proxy

Constructor Details

This class inherits a constructor from Glimmer::FX::ControlProxy

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Glimmer::FX::ControlProxy

Instance Method Details

#runObject



69
70
71
72
73
74
75
# File 'lib/glimmer/fx/control_proxy/app_proxy.rb', line 69

def run
  unless @created
    create
    @created = true
  end
  super
end