Class: JLDrill::Test::MainWindowView
- Inherits:
-
MainContext::MainWindowView
- Object
- Context::View
- MainContext::MainWindowView
- JLDrill::Test::MainWindowView
- Defined in:
- lib/jldrill/views/test/MainWindowView.rb
Instance Attribute Summary collapse
-
#destroyed ⇒ Object
Returns the value of attribute destroyed.
Attributes inherited from Context::View
Instance Method Summary collapse
- #destroy ⇒ Object
-
#initialize(context) ⇒ MainWindowView
constructor
A new instance of MainWindowView.
Methods inherited from MainContext::MainWindowView
#close, #inititalize, #showBusy
Methods inherited from Context::View
#addView, #getWidget, #removeView, #removingViewFrom, #viewAddedTo
Constructor Details
#initialize(context) ⇒ MainWindowView
Returns a new instance of MainWindowView.
10 11 12 13 |
# File 'lib/jldrill/views/test/MainWindowView.rb', line 10 def initialize(context) super(context) @destroyed = false end |
Instance Attribute Details
#destroyed ⇒ Object
Returns the value of attribute destroyed.
7 8 9 |
# File 'lib/jldrill/views/test/MainWindowView.rb', line 7 def destroyed @destroyed end |
Instance Method Details
#destroy ⇒ Object
15 16 17 |
# File 'lib/jldrill/views/test/MainWindowView.rb', line 15 def destroy @destroyed = true end |