Class: AimsProject::ThreadCallbackEvent

Inherits:
Wx::CommandEvent
  • Object
show all
Defined in:
lib/aims_project/thread_callback_event.rb

Constant Summary collapse

@@event_type_id =
0

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeThreadCallbackEvent

Returns a new instance of ThreadCallbackEvent.



14
15
16
# File 'lib/aims_project/thread_callback_event.rb', line 14

def initialize
  super(@@event_type_id)
end

Class Method Details

.event_typeObject



10
11
12
# File 'lib/aims_project/thread_callback_event.rb', line 10

def ThreadCallbackEvent.event_type
  @@event_type_id
end

.set_event_type(id) ⇒ Object



6
7
8
# File 'lib/aims_project/thread_callback_event.rb', line 6

def ThreadCallbackEvent.set_event_type(id)
  @@event_type_id = id
end