module Lebowski::Foundation::Mixins::FrameApplicationContextSupport

Mixin is used to provide support to an object that wants to provide a frame application that can be used to acquire application context

Public Instance Methods

frame() click to toggle source
# File lib/lebowski/foundation/mixins/frame_application_context_support.rb, line 17
def frame()
  
  if @frame_app.nil?
    parent_app = Util.get_root_application_object(self)
    @frame_app = FrameApplication.new({
      :parent_app => parent_app,
      :locator => frame_app_context_locator
    })
  end
  return @frame_app
end
frame_app_context_locator() click to toggle source
# File lib/lebowski/foundation/mixins/frame_application_context_support.rb, line 29
def frame_app_context_locator()
  return ''
end