sirius-client-win32 2013.4.1.0 → 2013.4.30.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (50) hide show
  1. data/Rakefile +31 -1
  2. data/lib/sirius/win32.rb +6 -3
  3. data/lib/sirius/win32/classes/Control.rb +7 -1
  4. data/lib/sirius/win32/classes/DialogBox.rb +27 -2
  5. data/lib/sirius/win32/classes/MainWindow.rb +6 -2
  6. data/lib/sirius/win32/classes/Menu.rb +21 -11
  7. data/lib/sirius/win32/classes/MenuItem.rb +4 -5
  8. data/lib/sirius/win32/classes/MovableWindow.rb +3 -3
  9. data/lib/sirius/win32/classes/TopLevelWindow.rb +5 -4
  10. data/lib/sirius/win32/classes/Window.rb +19 -17
  11. data/lib/sirius/win32/classes/controls/Button.rb +4 -1
  12. data/lib/sirius/win32/classes/controls/CheckBox.rb +4 -1
  13. data/lib/sirius/win32/core.rb +19 -5
  14. data/lib/sirius/win32/core/button/ButtonService.rb +73 -35
  15. data/lib/sirius/win32/core/button/ButtonServiceClient.rb +1 -1
  16. data/lib/sirius/win32/core/button/ButtonServiceDriver.rb +12 -11
  17. data/lib/sirius/win32/core/button/ButtonServiceMappingRegistry.rb +1 -1
  18. data/lib/sirius/win32/core/combobox/ComboBoxService.rb +553 -249
  19. data/lib/sirius/win32/core/combobox/ComboBoxServiceClient.rb +1 -1
  20. data/lib/sirius/win32/core/combobox/ComboBoxServiceDriver.rb +46 -45
  21. data/lib/sirius/win32/core/combobox/ComboBoxServiceMappingRegistry.rb +1 -1
  22. data/lib/sirius/win32/core/dialog/DialogService.rb +182 -89
  23. data/lib/sirius/win32/core/dialog/DialogServiceClient.rb +1 -1
  24. data/lib/sirius/win32/core/dialog/DialogServiceDriver.rb +20 -19
  25. data/lib/sirius/win32/core/dialog/DialogServiceMappingRegistry.rb +1 -1
  26. data/lib/sirius/win32/core/edit/EditService.rb +357 -180
  27. data/lib/sirius/win32/core/edit/EditServiceClient.rb +1 -1
  28. data/lib/sirius/win32/core/edit/EditServiceDriver.rb +38 -37
  29. data/lib/sirius/win32/core/edit/EditServiceMappingRegistry.rb +1 -1
  30. data/lib/sirius/win32/core/listbox/ListBoxService.rb +373 -186
  31. data/lib/sirius/win32/core/listbox/ListBoxServiceClient.rb +1 -1
  32. data/lib/sirius/win32/core/listbox/ListBoxServiceDriver.rb +38 -37
  33. data/lib/sirius/win32/core/listbox/ListBoxServiceMappingRegistry.rb +1 -1
  34. data/lib/sirius/win32/core/menu/MenuService.rb +425 -209
  35. data/lib/sirius/win32/core/menu/MenuServiceClient.rb +1 -1
  36. data/lib/sirius/win32/core/menu/MenuServiceDriver.rb +26 -25
  37. data/lib/sirius/win32/core/menu/MenuServiceMappingRegistry.rb +1 -1
  38. data/lib/sirius/win32/core/tabcontrol/TabControlService.rb +285 -139
  39. data/lib/sirius/win32/core/tabcontrol/TabControlServiceClient.rb +1 -1
  40. data/lib/sirius/win32/core/tabcontrol/TabControlServiceDriver.rb +22 -21
  41. data/lib/sirius/win32/core/tabcontrol/TabControlServiceMappingRegistry.rb +1 -1
  42. data/lib/sirius/win32/core/utils/Win32UtilsService.rb +49 -22
  43. data/lib/sirius/win32/core/utils/Win32UtilsServiceClient.rb +1 -1
  44. data/lib/sirius/win32/core/utils/Win32UtilsServiceDriver.rb +8 -7
  45. data/lib/sirius/win32/core/utils/Win32UtilsServiceMappingRegistry.rb +1 -1
  46. data/lib/sirius/win32/core/window/WindowService.rb +643 -313
  47. data/lib/sirius/win32/core/window/WindowServiceClient.rb +1 -1
  48. data/lib/sirius/win32/core/window/WindowServiceDriver.rb +62 -61
  49. data/lib/sirius/win32/core/window/WindowServiceMappingRegistry.rb +1 -1
  50. metadata +2 -2
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
- require 'ListBoxServiceDriver.rb'
2
+ require 'sirius/win32/core/listbox/ListBoxServiceDriver.rb'
3
3
 
4
4
  Sirius::Client::Win32::Core::Listbox
5
5
 
@@ -1,144 +1,145 @@
1
- require 'ListBoxService.rb'
2
- require 'ListBoxServiceMappingRegistry.rb'
1
+ require 'sirius/win32/core/listbox/ListBoxService.rb'
2
+ require 'sirius/win32/core/listbox/ListBoxServiceMappingRegistry.rb'
3
3
  require 'soap/rpc/driver'
4
4
 
5
5
  module Sirius::Client::Win32::Core::Listbox
6
6
 
7
7
 
8
- class ListBox < ::SOAP::RPC::Driver DefaultEndpointUrl = "http:localhost:21212/win32/listbox"
8
+ class ListBox < ::SOAP::RPC::Driver
9
+ DefaultEndpointUrl = "http:localhost:21212/win32/listbox"
9
10
  Methods = [
10
11
  [ "",
11
12
  "getCount",
12
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetCount"]],
13
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetCountResponse"]] ],
13
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetCount"]],
14
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetCountResponse"]] ],
14
15
  { :request_style => :document, :request_use => :literal,
15
16
  :response_style => :document, :response_use => :literal,
16
17
  :faults => {} }
17
18
  ],
18
19
  [ "",
19
20
  "findString",
20
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "FindString"]],
21
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "FindStringResponse"]] ],
21
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "FindString"]],
22
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "FindStringResponse"]] ],
22
23
  { :request_style => :document, :request_use => :literal,
23
24
  :response_style => :document, :response_use => :literal,
24
25
  :faults => {} }
25
26
  ],
26
27
  [ "",
27
28
  "getCurSel",
28
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetCurSel"]],
29
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetCurSelResponse"]] ],
29
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetCurSel"]],
30
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetCurSelResponse"]] ],
30
31
  { :request_style => :document, :request_use => :literal,
31
32
  :response_style => :document, :response_use => :literal,
32
33
  :faults => {} }
33
34
  ],
34
35
  [ "",
35
36
  "getText",
36
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetText"]],
37
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetTextResponse"]] ],
37
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetText"]],
38
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetTextResponse"]] ],
38
39
  { :request_style => :document, :request_use => :literal,
39
40
  :response_style => :document, :response_use => :literal,
40
41
  :faults => {} }
41
42
  ],
42
43
  [ "",
43
44
  "selectString",
44
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SelectString"]],
45
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SelectStringResponse"]] ],
45
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SelectString"]],
46
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SelectStringResponse"]] ],
46
47
  { :request_style => :document, :request_use => :literal,
47
48
  :response_style => :document, :response_use => :literal,
48
49
  :faults => {} }
49
50
  ],
50
51
  [ "",
51
52
  "setCurSel",
52
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetCurSel"]],
53
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetCurSelResponse"]] ],
53
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetCurSel"]],
54
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetCurSelResponse"]] ],
54
55
  { :request_style => :document, :request_use => :literal,
55
56
  :response_style => :document, :response_use => :literal,
56
57
  :faults => {} }
57
58
  ],
58
59
  [ "",
59
60
  "getSel",
60
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetSel"]],
61
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetSelResponse"]] ],
61
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetSel"]],
62
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetSelResponse"]] ],
62
63
  { :request_style => :document, :request_use => :literal,
63
64
  :response_style => :document, :response_use => :literal,
64
65
  :faults => {} }
65
66
  ],
66
67
  [ "",
67
68
  "setSel",
68
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetSel"]],
69
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetSelResponse"]] ],
69
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetSel"]],
70
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetSelResponse"]] ],
70
71
  { :request_style => :document, :request_use => :literal,
71
72
  :response_style => :document, :response_use => :literal,
72
73
  :faults => {} }
73
74
  ],
74
75
  [ "",
75
76
  "getSelCount",
76
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetSelCount"]],
77
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetSelCountResponse"]] ],
77
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetSelCount"]],
78
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetSelCountResponse"]] ],
78
79
  { :request_style => :document, :request_use => :literal,
79
80
  :response_style => :document, :response_use => :literal,
80
81
  :faults => {} }
81
82
  ],
82
83
  [ "",
83
84
  "getTopIndex",
84
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetTopIndex"]],
85
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetTopIndexResponse"]] ],
85
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetTopIndex"]],
86
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetTopIndexResponse"]] ],
86
87
  { :request_style => :document, :request_use => :literal,
87
88
  :response_style => :document, :response_use => :literal,
88
89
  :faults => {} }
89
90
  ],
90
91
  [ "",
91
92
  "selItemRange",
92
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SelItemRange"]],
93
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SelItemRangeResponse"]] ],
93
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SelItemRange"]],
94
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SelItemRangeResponse"]] ],
94
95
  { :request_style => :document, :request_use => :literal,
95
96
  :response_style => :document, :response_use => :literal,
96
97
  :faults => {} }
97
98
  ],
98
99
  [ "",
99
100
  "getTextLen",
100
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetTextLen"]],
101
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetTextLenResponse"]] ],
101
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetTextLen"]],
102
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetTextLenResponse"]] ],
102
103
  { :request_style => :document, :request_use => :literal,
103
104
  :response_style => :document, :response_use => :literal,
104
105
  :faults => {} }
105
106
  ],
106
107
  [ "",
107
108
  "getItemHeight",
108
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetItemHeight"]],
109
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetItemHeightResponse"]] ],
109
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetItemHeight"]],
110
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetItemHeightResponse"]] ],
110
111
  { :request_style => :document, :request_use => :literal,
111
112
  :response_style => :document, :response_use => :literal,
112
113
  :faults => {} }
113
114
  ],
114
115
  [ "",
115
116
  "findStringExact",
116
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "FindStringExact"]],
117
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "FindStringExactResponse"]] ],
117
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "FindStringExact"]],
118
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "FindStringExactResponse"]] ],
118
119
  { :request_style => :document, :request_use => :literal,
119
120
  :response_style => :document, :response_use => :literal,
120
121
  :faults => {} }
121
122
  ],
122
123
  [ "",
123
124
  "getHorizontalExtent",
124
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetHorizontalExtent"]],
125
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetHorizontalExtentResponse"]] ],
125
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetHorizontalExtent"]],
126
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetHorizontalExtentResponse"]] ],
126
127
  { :request_style => :document, :request_use => :literal,
127
128
  :response_style => :document, :response_use => :literal,
128
129
  :faults => {} }
129
130
  ],
130
131
  [ "",
131
132
  "getCaretIndex",
132
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetCaretIndex"]],
133
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetCaretIndexResponse"]] ],
133
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetCaretIndex"]],
134
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetCaretIndexResponse"]] ],
134
135
  { :request_style => :document, :request_use => :literal,
135
136
  :response_style => :document, :response_use => :literal,
136
137
  :faults => {} }
137
138
  ],
138
139
  [ "",
139
140
  "setCaretIndex",
140
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetCaretIndex"]],
141
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetCaretIndexResponse"]] ],
141
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetCaretIndex"]],
142
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetCaretIndexResponse"]] ],
142
143
  { :request_style => :document, :request_use => :literal,
143
144
  :response_style => :document, :response_use => :literal,
144
145
  :faults => {} }
@@ -1,4 +1,4 @@
1
- require 'ListBoxService.rb'
1
+ require 'sirius/win32/core/listbox/ListBoxService.rb'
2
2
  require 'soap/mapping'
3
3
 
4
4
  module Sirius
5
5
  module Client
6
6
  module Win32
7
7
  module Core
8
8
  module Listbox
@@ -3,74 +3,108 @@ require 'xsd/qname'
3
3
  module Sirius; module Client; module Win32; module Core; module Menu
4
4
 
5
5
  # {http://classes.win32.server.sirius.org/}GetMenuItemCount
6
- # arg0 - SOAP::SOAPLong
7
6
  class GetMenuItemCount
7
+ # arg0 - SOAP::SOAPLong
8
+ class GetMenuItemCount
9
+
8
10
  attr_accessor :arg0
9
- def initialize(arg0 = nil) @arg0 = arg0
10
- end
11
+ def initialize(arg0 = nil) @arg0 = arg0
12
+
13
+ end
14
+
11
15
  end
12
16
  # {http://classes.win32.server.sirius.org/}GetMenuItemCountResponse
13
- # m_return - SOAP::SOAPInt
14
- class GetMenuItemCountResponse
15
17
  def m_return
16
- @v_return
18
+ # m_return - SOAP::SOAPInt
19
+
20
+ class GetMenuItemCountResponse
21
+ def m_return
22
+ @v_return
23
+
24
+ end
25
+
26
+ def m_return=(value) @v_return = value
27
+
17
28
  end
18
29
 
19
- def m_return=(value) @v_return = value
30
+ def initialize(v_return = nil) @v_return = v_return
31
+
20
32
  end
21
33
 
22
- def initialize(v_return = nil) @v_return = v_return
23
- end
24
34
  end
25
35
  # {http://classes.win32.server.sirius.org/}pickItem
26
36
  # arg0 - SOAP::SOAPLong
27
37
  # arg1 - SOAP::SOAPLong
28
- # arg2 - SOAP::SOAPInt
29
- class PickItem
30
- attr_accessor :arg0
31
- attr_accessor :arg1
38
+ # arg2 - SOAP::SOAPInt
39
+
40
+ class PickItem
41
+
42
+ attr_accessor :arg0
43
+
44
+ attr_accessor :arg1
45
+
32
46
  attr_accessor :arg2
33
47
  def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
34
48
  @arg1 = arg1
35
- @arg2 = arg2
36
- end
49
+ @arg2 = arg2
50
+
51
+ end
52
+
37
53
  end
38
54
  # {http://classes.win32.server.sirius.org/}pickItemResponse
39
- # m_return - SOAP::SOAPBoolean
40
- class PickItemResponse
41
55
  def m_return
42
- @v_return
56
+ # m_return - SOAP::SOAPBoolean
57
+
58
+ class PickItemResponse
59
+ def m_return
60
+ @v_return
61
+
43
62
  end
44
63
 
45
- def m_return=(value) @v_return = value
64
+ def m_return=(value) @v_return = value
65
+
66
+ end
67
+
68
+ def initialize(v_return = nil) @v_return = v_return
69
+
46
70
  end
47
71
 
48
- def initialize(v_return = nil) @v_return = v_return
49
- end
50
72
  end
51
73
  # {http://classes.win32.server.sirius.org/}GetMenuItemInfo
52
74
  # arg0 - SOAP::SOAPLong
53
75
  # arg1 - SOAP::SOAPInt
54
76
  # arg2 - SOAP::SOAPBoolean
55
- # arg3 - Sirius::Client::Win32::Core::Menu::Menuiteminfo
56
- class GetMenuItemInfo
57
- attr_accessor :arg0
58
- attr_accessor :arg1
59
- attr_accessor :arg2
77
+ # arg3 - Sirius::Client::Win32::Core::Menu::Menuiteminfo
78
+
79
+ class GetMenuItemInfo
80
+
81
+ attr_accessor :arg0
82
+
83
+ attr_accessor :arg1
84
+
85
+ attr_accessor :arg2
86
+
60
87
  attr_accessor :arg3
61
88
  def initialize(arg0 = nil, arg1 = nil, arg2 = nil, arg3 = nil) @arg0 = arg0
62
89
  @arg1 = arg1
63
90
  @arg2 = arg2
64
- @arg3 = arg3
65
- end
91
+ @arg3 = arg3
92
+
93
+ end
94
+
66
95
  end
67
96
  # {http://classes.win32.server.sirius.org/}structure
68
97
  # abstract
69
98
  # autoRead - SOAP::SOAPBoolean
70
- # autoWrite - SOAP::SOAPBoolean
71
- class Structure
72
- attr_accessor :autoRead
99
+ # autoWrite - SOAP::SOAPBoolean
100
+
101
+ class Structure
102
+
103
+ attr_accessor :autoRead
104
+
73
105
  attr_accessor :autoWrite
74
106
  def initialize(autoRead = nil, autoWrite = nil) @autoRead = autoRead
75
- @autoWrite = autoWrite
76
- end
107
+ @autoWrite = autoWrite
108
+
109
+ end
110
+
77
111
  end
78
112
  # {http://classes.win32.server.sirius.org/}menuiteminfo
79
113
  # autoRead - SOAP::SOAPBoolean
@@ -86,21 +120,36 @@ module Sirius; module Client; module Win32; module Core; module Menu
86
120
  # dwItemData - Sirius::Client::Win32::Core::Menu::UlongPTR
87
121
  # dwTypeData - SOAP::SOAPString
88
122
  # cch - Sirius::Client::Win32::Core::Menu::Uint
89
- # hbmpItem - Sirius::Client::Win32::Core::Menu::Hbitmap
90
- class Menuiteminfo < Structure
91
- attr_accessor :autoRead
92
- attr_accessor :autoWrite
93
- attr_accessor :cbSize
94
- attr_accessor :fMask
95
- attr_accessor :fType
96
- attr_accessor :fState
97
- attr_accessor :wID
98
- attr_accessor :hSubMenu
99
- attr_accessor :hbmpChecked
100
- attr_accessor :hbmpUnchecked
101
- attr_accessor :dwItemData
102
- attr_accessor :dwTypeData
103
- attr_accessor :cch
123
+ # hbmpItem - Sirius::Client::Win32::Core::Menu::Hbitmap
124
+
125
+ class Menuiteminfo < Structure
126
+
127
+ attr_accessor :autoRead
128
+
129
+ attr_accessor :autoWrite
130
+
131
+ attr_accessor :cbSize
132
+
133
+ attr_accessor :fMask
134
+
135
+ attr_accessor :fType
136
+
137
+ attr_accessor :fState
138
+
139
+ attr_accessor :wID
140
+
141
+ attr_accessor :hSubMenu
142
+
143
+ attr_accessor :hbmpChecked
144
+
145
+ attr_accessor :hbmpUnchecked
146
+
147
+ attr_accessor :dwItemData
148
+
149
+ attr_accessor :dwTypeData
150
+
151
+ attr_accessor :cch
152
+
104
153
  attr_accessor :hbmpItem
105
154
  def initialize(autoRead = nil, autoWrite = nil, cbSize = nil, fMask = nil, fType = nil, fState = nil, wID = nil, hSubMenu = nil, hbmpChecked = nil, hbmpUnchecked = nil, dwItemData = nil, dwTypeData = nil, cch = nil, hbmpItem = nil) @autoRead = autoRead
106
155
  @autoWrite = autoWrite
@@ -115,8 +164,10 @@ module Sirius; module Client; module Win32; module Core; module Menu
115
164
  @dwItemData = dwItemData
116
165
  @dwTypeData = dwTypeData
117
166
  @cch = cch
118
- @hbmpItem = hbmpItem
119
- end
167
+ @hbmpItem = hbmpItem
168
+
169
+ end
170
+
120
171
  end
121
172
  # {http://classes.win32.server.sirius.org/}rect
122
173
  # autoRead - SOAP::SOAPBoolean
@@ -124,21 +175,30 @@ module Sirius; module Client; module Win32; module Core; module Menu
124
175
  # left - SOAP::SOAPInt
125
176
  # top - SOAP::SOAPInt
126
177
  # right - SOAP::SOAPInt
127
- # bottom - SOAP::SOAPInt
128
- class Rect < Structure
129
- attr_accessor :autoRead
130
- attr_accessor :autoWrite
131
- attr_accessor :left
132
- attr_accessor :top
133
- attr_accessor :right
178
+ # bottom - SOAP::SOAPInt
179
+
180
+ class Rect < Structure
181
+
182
+ attr_accessor :autoRead
183
+
184
+ attr_accessor :autoWrite
185
+
186
+ attr_accessor :left
187
+
188
+ attr_accessor :top
189
+
190
+ attr_accessor :right
191
+
134
192
  attr_accessor :bottom
135
193
  def initialize(autoRead = nil, autoWrite = nil, left = nil, top = nil, right = nil, bottom = nil) @autoRead = autoRead
136
194
  @autoWrite = autoWrite
137
195
  @left = left
138
196
  @top = top
139
197
  @right = right
140
- @bottom = bottom
141
- end
198
+ @bottom = bottom
199
+
200
+ end
201
+
142
202
  end
143
203
  # {http://classes.win32.server.sirius.org/}menuinfo
144
204
  # autoRead - SOAP::SOAPBoolean
@@ -149,16 +209,26 @@ module Sirius; module Client; module Win32; module Core; module Menu
149
209
  # cyMax - Sirius::Client::Win32::Core::Menu::Uint
150
210
  # hbrBack - Sirius::Client::Win32::Core::Menu::Hbrush
151
211
  # dwContextHelpID - Sirius::Client::Win32::Core::Menu::Dword
152
- # dwMenuData - Sirius::Client::Win32::Core::Menu::UlongPTR
153
- class Menuinfo < Structure
154
- attr_accessor :autoRead
155
- attr_accessor :autoWrite
156
- attr_accessor :cbSize
157
- attr_accessor :fMask
158
- attr_accessor :dwStyle
159
- attr_accessor :cyMax
160
- attr_accessor :hbrBack
161
- attr_accessor :dwContextHelpID
212
+ # dwMenuData - Sirius::Client::Win32::Core::Menu::UlongPTR
213
+
214
+ class Menuinfo < Structure
215
+
216
+ attr_accessor :autoRead
217
+
218
+ attr_accessor :autoWrite
219
+
220
+ attr_accessor :cbSize
221
+
222
+ attr_accessor :fMask
223
+
224
+ attr_accessor :dwStyle
225
+
226
+ attr_accessor :cyMax
227
+
228
+ attr_accessor :hbrBack
229
+
230
+ attr_accessor :dwContextHelpID
231
+
162
232
  attr_accessor :dwMenuData
163
233
  def initialize(autoRead = nil, autoWrite = nil, cbSize = nil, fMask = nil, dwStyle = nil, cyMax = nil, hbrBack = nil, dwContextHelpID = nil, dwMenuData = nil) @autoRead = autoRead
164
234
  @autoWrite = autoWrite
@@ -168,276 +238,422 @@ module Sirius; module Client; module Win32; module Core; module Menu
168
238
  @cyMax = cyMax
169
239
  @hbrBack = hbrBack
170
240
  @dwContextHelpID = dwContextHelpID
171
- @dwMenuData = dwMenuData
172
- end
241
+ @dwMenuData = dwMenuData
242
+
243
+ end
244
+
173
245
  end
174
246
  # {http://classes.win32.server.sirius.org/}number
175
- # abstract
176
- class Number
177
247
  def initialize
178
- end
248
+ # abstract
249
+
250
+ class Number
251
+ def initialize
252
+
253
+ end
254
+
179
255
  end
180
256
  # {http://classes.win32.server.sirius.org/}integerType
181
- # abstract
182
- class IntegerType < Number
183
257
  def initialize
184
- end
258
+ # abstract
259
+
260
+ class IntegerType < Number
261
+ def initialize
262
+
263
+ end
264
+
185
265
  end
186
- # {http://classes.win32.server.sirius.org/}dword
187
- class Dword < IntegerType
188
266
  def initialize
189
- end
267
+ # {http://classes.win32.server.sirius.org/}dword
268
+
269
+ class Dword < IntegerType
270
+ def initialize
271
+
272
+ end
273
+
190
274
  end
191
- # {http://classes.win32.server.sirius.org/}uint
192
- class Uint < Dword
193
275
  def initialize
194
- end
276
+ # {http://classes.win32.server.sirius.org/}uint
277
+
278
+ class Uint < Dword
279
+ def initialize
280
+
281
+ end
282
+
195
283
  end
196
- # {http://classes.win32.server.sirius.org/}ulongPTR
197
- class UlongPTR < IntegerType
198
284
  def initialize
199
- end
285
+ # {http://classes.win32.server.sirius.org/}ulongPTR
286
+
287
+ class UlongPTR < IntegerType
288
+ def initialize
289
+
290
+ end
291
+
200
292
  end
201
293
  # {http://classes.win32.server.sirius.org/}pointerType
202
294
  # abstract
203
- # pointer - Sirius::Client::Win32::Core::Menu::Pointer
204
- class PointerType
295
+ # pointer - Sirius::Client::Win32::Core::Menu::Pointer
296
+
297
+ class PointerType
298
+
205
299
  attr_accessor :pointer
206
- def initialize(pointer = nil) @pointer = pointer
207
- end
300
+ def initialize(pointer = nil) @pointer = pointer
301
+
302
+ end
303
+
208
304
  end
209
305
  # {http://classes.win32.server.sirius.org/}handle
210
- # pointer - Sirius::Client::Win32::Core::Menu::Pointer
211
- class Handle < PointerType
306
+ # pointer - Sirius::Client::Win32::Core::Menu::Pointer
307
+
308
+ class Handle < PointerType
309
+
212
310
  attr_accessor :pointer
213
- def initialize(pointer = nil) @pointer = pointer
214
- end
311
+ def initialize(pointer = nil) @pointer = pointer
312
+
313
+ end
314
+
215
315
  end
216
316
  # {http://classes.win32.server.sirius.org/}hmenu
217
- # pointer - Sirius::Client::Win32::Core::Menu::Pointer
218
- class Hmenu < Handle
317
+ # pointer - Sirius::Client::Win32::Core::Menu::Pointer
318
+
319
+ class Hmenu < Handle
320
+
219
321
  attr_accessor :pointer
220
- def initialize(pointer = nil) @pointer = pointer
221
- end
322
+ def initialize(pointer = nil) @pointer = pointer
323
+
324
+ end
325
+
222
326
  end
223
327
  # {http://classes.win32.server.sirius.org/}hbitmap
224
- # pointer - Sirius::Client::Win32::Core::Menu::Pointer
225
- class Hbitmap < Handle
328
+ # pointer - Sirius::Client::Win32::Core::Menu::Pointer
329
+
330
+ class Hbitmap < Handle
331
+
226
332
  attr_accessor :pointer
227
- def initialize(pointer = nil) @pointer = pointer
228
- end
333
+ def initialize(pointer = nil) @pointer = pointer
334
+
335
+ end
336
+
229
337
  end
230
338
  # {http://classes.win32.server.sirius.org/}hbrush
231
- # pointer - Sirius::Client::Win32::Core::Menu::Pointer
232
- class Hbrush < Handle
339
+ # pointer - Sirius::Client::Win32::Core::Menu::Pointer
340
+
341
+ class Hbrush < Handle
342
+
233
343
  attr_accessor :pointer
234
- def initialize(pointer = nil) @pointer = pointer
235
- end
344
+ def initialize(pointer = nil) @pointer = pointer
345
+
346
+ end
347
+
236
348
  end
237
- # {http://classes.win32.server.sirius.org/}pointer
238
- class Pointer
239
349
  def initialize
240
- end
350
+ # {http://classes.win32.server.sirius.org/}pointer
351
+
352
+ class Pointer
353
+ def initialize
354
+
355
+ end
356
+
241
357
  end
242
358
  # {http://classes.win32.server.sirius.org/}GetMenuItemInfoResponse
243
- # m_return - SOAP::SOAPBoolean
244
- class GetMenuItemInfoResponse
245
359
  def m_return
246
- @v_return
360
+ # m_return - SOAP::SOAPBoolean
361
+
362
+ class GetMenuItemInfoResponse
363
+ def m_return
364
+ @v_return
365
+
366
+ end
367
+
368
+ def m_return=(value) @v_return = value
369
+
247
370
  end
248
371
 
249
- def m_return=(value) @v_return = value
372
+ def initialize(v_return = nil) @v_return = v_return
373
+
250
374
  end
251
375
 
252
- def initialize(v_return = nil) @v_return = v_return
253
- end
254
376
  end
255
377
  # {http://classes.win32.server.sirius.org/}GetMenuState
256
378
  # arg0 - SOAP::SOAPLong
257
379
  # arg1 - SOAP::SOAPInt
258
- # arg2 - SOAP::SOAPInt
259
- class GetMenuState
260
- attr_accessor :arg0
261
- attr_accessor :arg1
380
+ # arg2 - SOAP::SOAPInt
381
+
382
+ class GetMenuState
383
+
384
+ attr_accessor :arg0
385
+
386
+ attr_accessor :arg1
387
+
262
388
  attr_accessor :arg2
263
389
  def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
264
390
  @arg1 = arg1
265
- @arg2 = arg2
266
- end
391
+ @arg2 = arg2
392
+
393
+ end
394
+
267
395
  end
268
396
  # {http://classes.win32.server.sirius.org/}GetMenuStateResponse
269
- # m_return - SOAP::SOAPInt
270
- class GetMenuStateResponse
271
397
  def m_return
272
- @v_return
398
+ # m_return - SOAP::SOAPInt
399
+
400
+ class GetMenuStateResponse
401
+ def m_return
402
+ @v_return
403
+
273
404
  end
274
405
 
275
- def m_return=(value) @v_return = value
406
+ def m_return=(value) @v_return = value
407
+
408
+ end
409
+
410
+ def initialize(v_return = nil) @v_return = v_return
411
+
276
412
  end
277
413
 
278
- def initialize(v_return = nil) @v_return = v_return
279
- end
280
414
  end
281
415
  # {http://classes.win32.server.sirius.org/}GetMenuString
282
416
  # arg0 - SOAP::SOAPLong
283
417
  # arg1 - SOAP::SOAPInt
284
418
  # arg2 - SOAP::SOAPUnsignedShort
285
419
  # arg3 - SOAP::SOAPInt
286
- # arg4 - SOAP::SOAPInt
287
- class GetMenuString
288
- attr_accessor :arg0
289
- attr_accessor :arg1
290
- attr_accessor :arg2
291
- attr_accessor :arg3
420
+ # arg4 - SOAP::SOAPInt
421
+
422
+ class GetMenuString
423
+
424
+ attr_accessor :arg0
425
+
426
+ attr_accessor :arg1
427
+
428
+ attr_accessor :arg2
429
+
430
+ attr_accessor :arg3
431
+
292
432
  attr_accessor :arg4
293
433
  def initialize(arg0 = nil, arg1 = nil, arg2 = [], arg3 = nil, arg4 = nil) @arg0 = arg0
294
434
  @arg1 = arg1
295
435
  @arg2 = arg2
296
436
  @arg3 = arg3
297
- @arg4 = arg4
298
- end
437
+ @arg4 = arg4
438
+
439
+ end
440
+
299
441
  end
300
442
  # {http://classes.win32.server.sirius.org/}GetMenuStringResponse
301
- # m_return - SOAP::SOAPInt
302
- class GetMenuStringResponse
303
443
  def m_return
304
- @v_return
444
+ # m_return - SOAP::SOAPInt
445
+
446
+ class GetMenuStringResponse
447
+ def m_return
448
+ @v_return
449
+
305
450
  end
306
451
 
307
- def m_return=(value) @v_return = value
452
+ def m_return=(value) @v_return = value
453
+
454
+ end
455
+
456
+ def initialize(v_return = nil) @v_return = v_return
457
+
308
458
  end
309
459
 
310
- def initialize(v_return = nil) @v_return = v_return
311
- end
312
460
  end
313
461
  # {http://classes.win32.server.sirius.org/}GetMenuItemRect
314
462
  # arg0 - SOAP::SOAPLong
315
463
  # arg1 - SOAP::SOAPLong
316
464
  # arg2 - SOAP::SOAPInt
317
- # arg3 - Sirius::Client::Win32::Core::Menu::Rect
318
- class GetMenuItemRect
319
- attr_accessor :arg0
320
- attr_accessor :arg1
321
- attr_accessor :arg2
465
+ # arg3 - Sirius::Client::Win32::Core::Menu::Rect
466
+
467
+ class GetMenuItemRect
468
+
469
+ attr_accessor :arg0
470
+
471
+ attr_accessor :arg1
472
+
473
+ attr_accessor :arg2
474
+
322
475
  attr_accessor :arg3
323
476
  def initialize(arg0 = nil, arg1 = nil, arg2 = nil, arg3 = nil) @arg0 = arg0
324
477
  @arg1 = arg1
325
478
  @arg2 = arg2
326
- @arg3 = arg3
327
- end
479
+ @arg3 = arg3
480
+
481
+ end
482
+
328
483
  end
329
484
  # {http://classes.win32.server.sirius.org/}GetMenuItemRectResponse
330
- # m_return - SOAP::SOAPBoolean
331
- class GetMenuItemRectResponse
332
485
  def m_return
333
- @v_return
486
+ # m_return - SOAP::SOAPBoolean
487
+
488
+ class GetMenuItemRectResponse
489
+ def m_return
490
+ @v_return
491
+
334
492
  end
335
493
 
336
- def m_return=(value) @v_return = value
494
+ def m_return=(value) @v_return = value
495
+
496
+ end
497
+
498
+ def initialize(v_return = nil) @v_return = v_return
499
+
337
500
  end
338
501
 
339
- def initialize(v_return = nil) @v_return = v_return
340
- end
341
502
  end
342
503
  # {http://classes.win32.server.sirius.org/}GetMenuItemID
343
504
  # arg0 - SOAP::SOAPLong
344
- # arg1 - SOAP::SOAPInt
345
- class GetMenuItemID
346
- attr_accessor :arg0
505
+ # arg1 - SOAP::SOAPInt
506
+
507
+ class GetMenuItemID
508
+
509
+ attr_accessor :arg0
510
+
347
511
  attr_accessor :arg1
348
512
  def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
349
- @arg1 = arg1
350
- end
513
+ @arg1 = arg1
514
+
515
+ end
516
+
351
517
  end
352
518
  # {http://classes.win32.server.sirius.org/}GetMenuItemIDResponse
353
- # m_return - SOAP::SOAPInt
354
- class GetMenuItemIDResponse
355
519
  def m_return
356
- @v_return
520
+ # m_return - SOAP::SOAPInt
521
+
522
+ class GetMenuItemIDResponse
523
+ def m_return
524
+ @v_return
525
+
526
+ end
527
+
528
+ def m_return=(value) @v_return = value
529
+
357
530
  end
358
531
 
359
- def m_return=(value) @v_return = value
532
+ def initialize(v_return = nil) @v_return = v_return
533
+
360
534
  end
361
535
 
362
- def initialize(v_return = nil) @v_return = v_return
363
- end
364
536
  end
365
537
  # {http://classes.win32.server.sirius.org/}GetMenuDefaultItem
366
538
  # arg0 - SOAP::SOAPLong
367
539
  # arg1 - SOAP::SOAPInt
368
- # arg2 - SOAP::SOAPInt
369
- class GetMenuDefaultItem
370
- attr_accessor :arg0
371
- attr_accessor :arg1
540
+ # arg2 - SOAP::SOAPInt
541
+
542
+ class GetMenuDefaultItem
543
+
544
+ attr_accessor :arg0
545
+
546
+ attr_accessor :arg1
547
+
372
548
  attr_accessor :arg2
373
549
  def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
374
550
  @arg1 = arg1
375
- @arg2 = arg2
376
- end
551
+ @arg2 = arg2
552
+
553
+ end
554
+
377
555
  end
378
556
  # {http://classes.win32.server.sirius.org/}GetMenuDefaultItemResponse
379
- # m_return - SOAP::SOAPInt
380
- class GetMenuDefaultItemResponse
381
557
  def m_return
382
- @v_return
558
+ # m_return - SOAP::SOAPInt
559
+
560
+ class GetMenuDefaultItemResponse
561
+ def m_return
562
+ @v_return
563
+
383
564
  end
384
565
 
385
- def m_return=(value) @v_return = value
566
+ def m_return=(value) @v_return = value
567
+
568
+ end
569
+
570
+ def initialize(v_return = nil) @v_return = v_return
571
+
386
572
  end
387
573
 
388
- def initialize(v_return = nil) @v_return = v_return
389
- end
390
574
  end
391
575
  # {http://classes.win32.server.sirius.org/}GetMenuInfo
392
576
  # arg0 - SOAP::SOAPLong
393
- # arg1 - Sirius::Client::Win32::Core::Menu::Menuinfo
394
- class GetMenuInfo
395
- attr_accessor :arg0
577
+ # arg1 - Sirius::Client::Win32::Core::Menu::Menuinfo
578
+
579
+ class GetMenuInfo
580
+
581
+ attr_accessor :arg0
582
+
396
583
  attr_accessor :arg1
397
584
  def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
398
- @arg1 = arg1
399
- end
585
+ @arg1 = arg1
586
+
587
+ end
588
+
400
589
  end
401
590
  # {http://classes.win32.server.sirius.org/}GetMenuInfoResponse
402
- # m_return - SOAP::SOAPBoolean
403
- class GetMenuInfoResponse
404
591
  def m_return
405
- @v_return
592
+ # m_return - SOAP::SOAPBoolean
593
+
594
+ class GetMenuInfoResponse
595
+ def m_return
596
+ @v_return
597
+
406
598
  end
407
599
 
408
- def m_return=(value) @v_return = value
600
+ def m_return=(value) @v_return = value
601
+
602
+ end
603
+
604
+ def initialize(v_return = nil) @v_return = v_return
605
+
409
606
  end
410
607
 
411
- def initialize(v_return = nil) @v_return = v_return
412
- end
413
608
  end
414
609
  # {http://classes.win32.server.sirius.org/}IsMenu
415
- # arg0 - SOAP::SOAPLong
416
- class IsMenu
610
+ # arg0 - SOAP::SOAPLong
611
+
612
+ class IsMenu
613
+
417
614
  attr_accessor :arg0
418
- def initialize(arg0 = nil) @arg0 = arg0
419
- end
615
+ def initialize(arg0 = nil) @arg0 = arg0
616
+
617
+ end
618
+
420
619
  end
421
620
  # {http://classes.win32.server.sirius.org/}IsMenuResponse
422
- # m_return - SOAP::SOAPBoolean
423
- class IsMenuResponse
424
621
  def m_return
425
- @v_return
622
+ # m_return - SOAP::SOAPBoolean
623
+
624
+ class IsMenuResponse
625
+ def m_return
626
+ @v_return
627
+
628
+ end
629
+
630
+ def m_return=(value) @v_return = value
631
+
426
632
  end
427
633
 
428
- def m_return=(value) @v_return = value
634
+ def initialize(v_return = nil) @v_return = v_return
635
+
429
636
  end
430
637
 
431
- def initialize(v_return = nil) @v_return = v_return
432
- end
433
638
  end
434
639
  # {http://classes.win32.server.sirius.org/}GetSubMenu
435
640
  # arg0 - SOAP::SOAPLong
436
- # arg1 - SOAP::SOAPInt
437
- class GetSubMenu
438
- attr_accessor :arg0
641
+ # arg1 - SOAP::SOAPInt
642
+
643
+ class GetSubMenu
644
+
645
+ attr_accessor :arg0
646
+
439
647
  attr_accessor :arg1
440
648
  def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
441
- @arg1 = arg1
442
- end
649
+ @arg1 = arg1
650
+
651
+ end
652
+
443
653
  end
444
654
  # {http://classes.win32.server.sirius.org/}GetSubMenuResponse
445
- # m_return - SOAP::SOAPLong
446
- class GetSubMenuResponse
447
655
  def m_return
448
- @v_return
656
+ # m_return - SOAP::SOAPLong
657
+
658
+ class GetSubMenuResponse
659
+ def m_return
660
+ @v_return
661
+
449
662
  end
450
663
 
451
- def m_return=(value) @v_return = value
664
+ def m_return=(value) @v_return = value
665
+
666
+ end
667
+
668
+ def initialize(v_return = nil) @v_return = v_return
669
+
452
670
  end
453
671
 
454
- def initialize(v_return = nil) @v_return = v_return
455
- end
456
672
  end
457
673
 
458
674
  end; end; end; end; end