rumai 2.0.0 → 2.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (304) hide show
  1. data/LICENSE +13 -23
  2. data/Rakefile +8 -58
  3. data/bin/rumai +21 -22
  4. data/doc/api/IO.html +53 -0
  5. data/doc/api/Integer.html +102 -0
  6. data/doc/api/Object.html +23 -0
  7. data/doc/api/Rumai.html +1218 -0
  8. data/doc/api/Rumai/Area.html +1088 -0
  9. data/doc/api/Rumai/Chain.html +230 -0
  10. data/doc/api/Rumai/Client.html +1264 -0
  11. data/doc/api/Rumai/ClientContainer.html +227 -0
  12. data/doc/api/Rumai/ExportInstMethods.html +115 -0
  13. data/doc/api/Rumai/IXP.html +23 -0
  14. data/doc/api/Rumai/IXP/Agent.html +1222 -0
  15. data/doc/api/Rumai/IXP/Agent/FidStream.html +602 -0
  16. data/doc/api/Rumai/IXP/Agent/RangedPool.html +263 -0
  17. data/doc/api/Rumai/IXP/Error.html +32 -0
  18. data/doc/api/Rumai/IXP/Fcall.html +398 -0
  19. data/doc/api/Rumai/IXP/Qid.html +99 -0
  20. data/doc/api/Rumai/IXP/Rattach.html +71 -0
  21. data/doc/api/Rumai/IXP/Rauth.html +71 -0
  22. data/doc/api/Rumai/IXP/Rclunk.html +71 -0
  23. data/doc/api/Rumai/IXP/Rcreate.html +71 -0
  24. data/doc/api/Rumai/IXP/Rerror.html +71 -0
  25. data/doc/api/Rumai/IXP/Rflush.html +71 -0
  26. data/doc/api/Rumai/IXP/Ropen.html +71 -0
  27. data/doc/api/Rumai/IXP/Rread.html +71 -0
  28. data/doc/api/Rumai/IXP/Rremove.html +71 -0
  29. data/doc/api/Rumai/IXP/Rstat.html +71 -0
  30. data/doc/api/Rumai/IXP/Rversion.html +71 -0
  31. data/doc/api/Rumai/IXP/Rwalk.html +71 -0
  32. data/doc/api/Rumai/IXP/Rwrite.html +71 -0
  33. data/doc/api/Rumai/IXP/Rwstat.html +71 -0
  34. data/doc/api/Rumai/IXP/Stat.html +188 -0
  35. data/doc/api/Rumai/IXP/Stream.html +112 -0
  36. data/doc/api/Rumai/IXP/Struct.html +348 -0
  37. data/doc/api/Rumai/IXP/Struct/ClassField.html +177 -0
  38. data/doc/api/Rumai/IXP/Struct/Field.html +549 -0
  39. data/doc/api/Rumai/IXP/Struct/Field/CounteeField.html +175 -0
  40. data/doc/api/Rumai/IXP/Struct/Field/CounterField.html +95 -0
  41. data/doc/api/Rumai/IXP/Struct/Integer8Field.html +181 -0
  42. data/doc/api/Rumai/IXP/Struct/StringField.html +128 -0
  43. data/doc/api/Rumai/IXP/Tattach.html +71 -0
  44. data/doc/api/Rumai/IXP/Tauth.html +71 -0
  45. data/doc/api/Rumai/IXP/Tclunk.html +71 -0
  46. data/doc/api/Rumai/IXP/Tcreate.html +71 -0
  47. data/doc/api/Rumai/IXP/Terror.html +156 -0
  48. data/doc/api/Rumai/IXP/Tflush.html +71 -0
  49. data/doc/api/Rumai/IXP/Topen.html +113 -0
  50. data/doc/api/Rumai/IXP/Tread.html +71 -0
  51. data/doc/api/Rumai/IXP/Tremove.html +71 -0
  52. data/doc/api/Rumai/IXP/Tstat.html +71 -0
  53. data/doc/api/Rumai/IXP/Tversion.html +83 -0
  54. data/doc/api/Rumai/IXP/Twalk.html +71 -0
  55. data/doc/api/Rumai/IXP/Twrite.html +71 -0
  56. data/doc/api/Rumai/IXP/Twstat.html +71 -0
  57. data/doc/api/Rumai/Node.html +1139 -0
  58. data/doc/api/Rumai/View.html +1280 -0
  59. data/doc/api/Rumai/WidgetImpl.html +196 -0
  60. data/doc/api/Rumai/WidgetNode.html +184 -0
  61. data/doc/api/String.html +180 -0
  62. data/doc/api/StringIO.html +53 -0
  63. data/doc/api/Time.html +175 -0
  64. data/doc/api/all-methods.html +1436 -0
  65. data/doc/api/all-namespaces.html +140 -0
  66. data/doc/api/app.js +18 -0
  67. data/doc/api/index.html +16 -22
  68. data/doc/api/jquery.js +11 -0
  69. data/doc/api/readme.html +35 -0
  70. data/doc/api/style.css +68 -0
  71. data/doc/api/syntax_highlight.css +21 -0
  72. data/doc/history.erb +17 -0
  73. data/doc/index.erb +13 -0
  74. data/doc/index.xhtml +1235 -0
  75. data/doc/intro.erb +86 -0
  76. data/doc/setup.erb +55 -0
  77. data/doc/theory.erb +3 -0
  78. data/doc/usage.erb +285 -0
  79. data/lib/rumai.rb +10 -7
  80. data/lib/rumai/fs.rb +13 -15
  81. data/lib/rumai/ixp.rb +2 -7
  82. data/lib/rumai/ixp/message.rb +0 -3
  83. data/lib/rumai/ixp/transport.rb +1 -4
  84. data/lib/rumai/wm.rb +6 -6
  85. data/test/rumai/ixp/message.rb +249 -0
  86. metadata +104 -263
  87. data/README +0 -1
  88. data/doc/api/classes/IO.html +0 -120
  89. data/doc/api/classes/Integer.html +0 -142
  90. data/doc/api/classes/Integer.src/M000002.html +0 -18
  91. data/doc/api/classes/Object.html +0 -113
  92. data/doc/api/classes/Rumai.html +0 -530
  93. data/doc/api/classes/Rumai.src/M000007.html +0 -18
  94. data/doc/api/classes/Rumai.src/M000008.html +0 -18
  95. data/doc/api/classes/Rumai.src/M000009.html +0 -18
  96. data/doc/api/classes/Rumai.src/M000010.html +0 -18
  97. data/doc/api/classes/Rumai.src/M000011.html +0 -18
  98. data/doc/api/classes/Rumai.src/M000012.html +0 -18
  99. data/doc/api/classes/Rumai.src/M000013.html +0 -18
  100. data/doc/api/classes/Rumai.src/M000014.html +0 -20
  101. data/doc/api/classes/Rumai.src/M000015.html +0 -18
  102. data/doc/api/classes/Rumai.src/M000016.html +0 -18
  103. data/doc/api/classes/Rumai.src/M000017.html +0 -18
  104. data/doc/api/classes/Rumai.src/M000018.html +0 -18
  105. data/doc/api/classes/Rumai.src/M000019.html +0 -18
  106. data/doc/api/classes/Rumai.src/M000020.html +0 -18
  107. data/doc/api/classes/Rumai.src/M000021.html +0 -18
  108. data/doc/api/classes/Rumai.src/M000022.html +0 -18
  109. data/doc/api/classes/Rumai.src/M000023.html +0 -18
  110. data/doc/api/classes/Rumai.src/M000024.html +0 -18
  111. data/doc/api/classes/Rumai.src/M000025.html +0 -18
  112. data/doc/api/classes/Rumai.src/M000026.html +0 -18
  113. data/doc/api/classes/Rumai/Area.html +0 -461
  114. data/doc/api/classes/Rumai/Area.src/M000079.html +0 -19
  115. data/doc/api/classes/Rumai/Area.src/M000080.html +0 -18
  116. data/doc/api/classes/Rumai/Area.src/M000081.html +0 -18
  117. data/doc/api/classes/Rumai/Area.src/M000082.html +0 -18
  118. data/doc/api/classes/Rumai/Area.src/M000083.html +0 -18
  119. data/doc/api/classes/Rumai/Area.src/M000084.html +0 -18
  120. data/doc/api/classes/Rumai/Area.src/M000085.html +0 -18
  121. data/doc/api/classes/Rumai/Area.src/M000086.html +0 -18
  122. data/doc/api/classes/Rumai/Area.src/M000087.html +0 -18
  123. data/doc/api/classes/Rumai/Area.src/M000088.html +0 -18
  124. data/doc/api/classes/Rumai/Area.src/M000089.html +0 -18
  125. data/doc/api/classes/Rumai/Area.src/M000090.html +0 -22
  126. data/doc/api/classes/Rumai/Area.src/M000092.html +0 -23
  127. data/doc/api/classes/Rumai/Area.src/M000093.html +0 -28
  128. data/doc/api/classes/Rumai/Area.src/M000094.html +0 -18
  129. data/doc/api/classes/Rumai/Area.src/M000095.html +0 -31
  130. data/doc/api/classes/Rumai/Chain.html +0 -179
  131. data/doc/api/classes/Rumai/Chain.src/M000076.html +0 -18
  132. data/doc/api/classes/Rumai/Chain.src/M000077.html +0 -18
  133. data/doc/api/classes/Rumai/Chain.src/M000078.html +0 -18
  134. data/doc/api/classes/Rumai/Client.html +0 -481
  135. data/doc/api/classes/Rumai/Client.src/M000113.html +0 -18
  136. data/doc/api/classes/Rumai/Client.src/M000114.html +0 -18
  137. data/doc/api/classes/Rumai/Client.src/M000115.html +0 -18
  138. data/doc/api/classes/Rumai/Client.src/M000116.html +0 -39
  139. data/doc/api/classes/Rumai/Client.src/M000117.html +0 -19
  140. data/doc/api/classes/Rumai/Client.src/M000118.html +0 -19
  141. data/doc/api/classes/Rumai/Client.src/M000119.html +0 -18
  142. data/doc/api/classes/Rumai/Client.src/M000120.html +0 -18
  143. data/doc/api/classes/Rumai/Client.src/M000121.html +0 -18
  144. data/doc/api/classes/Rumai/Client.src/M000122.html +0 -18
  145. data/doc/api/classes/Rumai/Client.src/M000123.html +0 -19
  146. data/doc/api/classes/Rumai/Client.src/M000124.html +0 -20
  147. data/doc/api/classes/Rumai/Client.src/M000125.html +0 -20
  148. data/doc/api/classes/Rumai/Client.src/M000126.html +0 -22
  149. data/doc/api/classes/Rumai/Client.src/M000127.html +0 -18
  150. data/doc/api/classes/Rumai/Client.src/M000128.html +0 -20
  151. data/doc/api/classes/Rumai/Client.src/M000129.html +0 -18
  152. data/doc/api/classes/Rumai/Client.src/M000130.html +0 -22
  153. data/doc/api/classes/Rumai/ClientContainer.html +0 -180
  154. data/doc/api/classes/Rumai/ClientContainer.src/M000027.html +0 -18
  155. data/doc/api/classes/Rumai/ClientContainer.src/M000028.html +0 -18
  156. data/doc/api/classes/Rumai/ClientContainer.src/M000029.html +0 -18
  157. data/doc/api/classes/Rumai/ExportInstMethods.html +0 -119
  158. data/doc/api/classes/Rumai/IXP.html +0 -149
  159. data/doc/api/classes/Rumai/IXP/Agent.html +0 -447
  160. data/doc/api/classes/Rumai/IXP/Agent.src/M000044.html +0 -53
  161. data/doc/api/classes/Rumai/IXP/Agent.src/M000045.html +0 -36
  162. data/doc/api/classes/Rumai/IXP/Agent.src/M000046.html +0 -39
  163. data/doc/api/classes/Rumai/IXP/Agent.src/M000047.html +0 -20
  164. data/doc/api/classes/Rumai/IXP/Agent.src/M000048.html +0 -22
  165. data/doc/api/classes/Rumai/IXP/Agent.src/M000049.html +0 -20
  166. data/doc/api/classes/Rumai/IXP/Agent.src/M000050.html +0 -33
  167. data/doc/api/classes/Rumai/IXP/Agent.src/M000051.html +0 -19
  168. data/doc/api/classes/Rumai/IXP/Agent.src/M000052.html +0 -18
  169. data/doc/api/classes/Rumai/IXP/Agent.src/M000053.html +0 -21
  170. data/doc/api/classes/Rumai/IXP/Agent.src/M000054.html +0 -20
  171. data/doc/api/classes/Rumai/IXP/Agent.src/M000055.html +0 -20
  172. data/doc/api/classes/Rumai/IXP/Agent.src/M000056.html +0 -22
  173. data/doc/api/classes/Rumai/IXP/Agent.src/M000057.html +0 -23
  174. data/doc/api/classes/Rumai/IXP/Agent.src/M000058.html +0 -19
  175. data/doc/api/classes/Rumai/IXP/Agent/FidStream.html +0 -312
  176. data/doc/api/classes/Rumai/IXP/Agent/FidStream.src/M000060.html +0 -23
  177. data/doc/api/classes/Rumai/IXP/Agent/FidStream.src/M000061.html +0 -19
  178. data/doc/api/classes/Rumai/IXP/Agent/FidStream.src/M000062.html +0 -22
  179. data/doc/api/classes/Rumai/IXP/Agent/FidStream.src/M000063.html +0 -18
  180. data/doc/api/classes/Rumai/IXP/Agent/FidStream.src/M000064.html +0 -45
  181. data/doc/api/classes/Rumai/IXP/Agent/FidStream.src/M000065.html +0 -36
  182. data/doc/api/classes/Rumai/IXP/Agent/MODES.html +0 -130
  183. data/doc/api/classes/Rumai/IXP/Agent/MODES.src/M000059.html +0 -22
  184. data/doc/api/classes/Rumai/IXP/Agent/RangedPool.html +0 -203
  185. data/doc/api/classes/Rumai/IXP/Agent/RangedPool.src/M000067.html +0 -22
  186. data/doc/api/classes/Rumai/IXP/Agent/RangedPool.src/M000068.html +0 -36
  187. data/doc/api/classes/Rumai/IXP/Agent/RangedPool.src/M000069.html +0 -18
  188. data/doc/api/classes/Rumai/IXP/Error.html +0 -117
  189. data/doc/api/classes/Rumai/IXP/Fcall.html +0 -261
  190. data/doc/api/classes/Rumai/IXP/Fcall.src/M000070.html +0 -20
  191. data/doc/api/classes/Rumai/IXP/Fcall.src/M000071.html +0 -25
  192. data/doc/api/classes/Rumai/IXP/Fcall.src/M000072.html +0 -18
  193. data/doc/api/classes/Rumai/IXP/Fcall.src/M000073.html +0 -18
  194. data/doc/api/classes/Rumai/IXP/Qid.html +0 -184
  195. data/doc/api/classes/Rumai/IXP/Rattach.html +0 -119
  196. data/doc/api/classes/Rumai/IXP/Rauth.html +0 -119
  197. data/doc/api/classes/Rumai/IXP/Rclunk.html +0 -119
  198. data/doc/api/classes/Rumai/IXP/Rcreate.html +0 -119
  199. data/doc/api/classes/Rumai/IXP/Rerror.html +0 -119
  200. data/doc/api/classes/Rumai/IXP/Rflush.html +0 -119
  201. data/doc/api/classes/Rumai/IXP/Ropen.html +0 -119
  202. data/doc/api/classes/Rumai/IXP/Rread.html +0 -119
  203. data/doc/api/classes/Rumai/IXP/Rremove.html +0 -119
  204. data/doc/api/classes/Rumai/IXP/Rstat.html +0 -119
  205. data/doc/api/classes/Rumai/IXP/Rversion.html +0 -119
  206. data/doc/api/classes/Rumai/IXP/Rwalk.html +0 -119
  207. data/doc/api/classes/Rumai/IXP/Rwrite.html +0 -119
  208. data/doc/api/classes/Rumai/IXP/Rwstat.html +0 -119
  209. data/doc/api/classes/Rumai/IXP/Stat.html +0 -248
  210. data/doc/api/classes/Rumai/IXP/Stat.src/M000075.html +0 -18
  211. data/doc/api/classes/Rumai/IXP/Stream.html +0 -158
  212. data/doc/api/classes/Rumai/IXP/Stream.src/M000043.html +0 -18
  213. data/doc/api/classes/Rumai/IXP/Struct.html +0 -221
  214. data/doc/api/classes/Rumai/IXP/Struct.src/M000030.html +0 -19
  215. data/doc/api/classes/Rumai/IXP/Struct.src/M000031.html +0 -18
  216. data/doc/api/classes/Rumai/IXP/Struct.src/M000032.html +0 -20
  217. data/doc/api/classes/Rumai/IXP/Struct.src/M000033.html +0 -57
  218. data/doc/api/classes/Rumai/IXP/Struct/Field.html +0 -296
  219. data/doc/api/classes/Rumai/IXP/Struct/Field.src/M000034.html +0 -21
  220. data/doc/api/classes/Rumai/IXP/Struct/Field.src/M000035.html +0 -21
  221. data/doc/api/classes/Rumai/IXP/Struct/Field.src/M000036.html +0 -20
  222. data/doc/api/classes/Rumai/IXP/Struct/Field.src/M000037.html +0 -29
  223. data/doc/api/classes/Rumai/IXP/Struct/Field.src/M000038.html +0 -18
  224. data/doc/api/classes/Rumai/IXP/Struct/Field.src/M000039.html +0 -18
  225. data/doc/api/classes/Rumai/IXP/Struct/Field/CounteeField.html +0 -152
  226. data/doc/api/classes/Rumai/IXP/Struct/Field/CounteeField.src/M000041.html +0 -24
  227. data/doc/api/classes/Rumai/IXP/Struct/Field/CounteeField.src/M000042.html +0 -25
  228. data/doc/api/classes/Rumai/IXP/Struct/Field/CounterField.html +0 -137
  229. data/doc/api/classes/Rumai/IXP/Struct/Field/CounterField.src/M000040.html +0 -18
  230. data/doc/api/classes/Rumai/IXP/Tattach.html +0 -120
  231. data/doc/api/classes/Rumai/IXP/Tauth.html +0 -119
  232. data/doc/api/classes/Rumai/IXP/Tclunk.html +0 -119
  233. data/doc/api/classes/Rumai/IXP/Tcreate.html +0 -120
  234. data/doc/api/classes/Rumai/IXP/Terror.html +0 -145
  235. data/doc/api/classes/Rumai/IXP/Terror.src/M000074.html +0 -18
  236. data/doc/api/classes/Rumai/IXP/Tflush.html +0 -119
  237. data/doc/api/classes/Rumai/IXP/Topen.html +0 -193
  238. data/doc/api/classes/Rumai/IXP/Tread.html +0 -119
  239. data/doc/api/classes/Rumai/IXP/Tremove.html +0 -119
  240. data/doc/api/classes/Rumai/IXP/Tstat.html +0 -119
  241. data/doc/api/classes/Rumai/IXP/Tversion.html +0 -137
  242. data/doc/api/classes/Rumai/IXP/Twalk.html +0 -120
  243. data/doc/api/classes/Rumai/IXP/Twrite.html +0 -120
  244. data/doc/api/classes/Rumai/IXP/Twstat.html +0 -119
  245. data/doc/api/classes/Rumai/Node.html +0 -461
  246. data/doc/api/classes/Rumai/Node.src/M000096.html +0 -18
  247. data/doc/api/classes/Rumai/Node.src/M000097.html +0 -18
  248. data/doc/api/classes/Rumai/Node.src/M000098.html +0 -22
  249. data/doc/api/classes/Rumai/Node.src/M000099.html +0 -18
  250. data/doc/api/classes/Rumai/Node.src/M000100.html +0 -18
  251. data/doc/api/classes/Rumai/Node.src/M000101.html +0 -18
  252. data/doc/api/classes/Rumai/Node.src/M000102.html +0 -18
  253. data/doc/api/classes/Rumai/Node.src/M000103.html +0 -22
  254. data/doc/api/classes/Rumai/Node.src/M000104.html +0 -18
  255. data/doc/api/classes/Rumai/Node.src/M000105.html +0 -18
  256. data/doc/api/classes/Rumai/Node.src/M000106.html +0 -18
  257. data/doc/api/classes/Rumai/Node.src/M000107.html +0 -18
  258. data/doc/api/classes/Rumai/Node.src/M000108.html +0 -18
  259. data/doc/api/classes/Rumai/Node.src/M000109.html +0 -18
  260. data/doc/api/classes/Rumai/Node.src/M000110.html +0 -18
  261. data/doc/api/classes/Rumai/Node.src/M000111.html +0 -20
  262. data/doc/api/classes/Rumai/Node.src/M000112.html +0 -27
  263. data/doc/api/classes/Rumai/View.html +0 -436
  264. data/doc/api/classes/Rumai/View.src/M000131.html +0 -18
  265. data/doc/api/classes/Rumai/View.src/M000132.html +0 -18
  266. data/doc/api/classes/Rumai/View.src/M000133.html +0 -18
  267. data/doc/api/classes/Rumai/View.src/M000134.html +0 -18
  268. data/doc/api/classes/Rumai/View.src/M000135.html +0 -18
  269. data/doc/api/classes/Rumai/View.src/M000136.html +0 -18
  270. data/doc/api/classes/Rumai/View.src/M000137.html +0 -18
  271. data/doc/api/classes/Rumai/View.src/M000138.html +0 -28
  272. data/doc/api/classes/Rumai/View.src/M000139.html +0 -18
  273. data/doc/api/classes/Rumai/View.src/M000140.html +0 -18
  274. data/doc/api/classes/Rumai/View.src/M000141.html +0 -18
  275. data/doc/api/classes/Rumai/View.src/M000142.html +0 -18
  276. data/doc/api/classes/Rumai/View.src/M000143.html +0 -29
  277. data/doc/api/classes/Rumai/View.src/M000144.html +0 -20
  278. data/doc/api/classes/Rumai/View.src/M000145.html +0 -33
  279. data/doc/api/classes/Rumai/View.src/M000146.html +0 -50
  280. data/doc/api/classes/String.html +0 -169
  281. data/doc/api/classes/String.src/M000005.html +0 -18
  282. data/doc/api/classes/String.src/M000006.html +0 -18
  283. data/doc/api/classes/StringIO.html +0 -120
  284. data/doc/api/classes/Time.html +0 -163
  285. data/doc/api/classes/Time.src/M000003.html +0 -18
  286. data/doc/api/classes/Time.src/M000004.html +0 -18
  287. data/doc/api/created.rid +0 -1
  288. data/doc/api/files/lib/rumai/fs_rb.html +0 -115
  289. data/doc/api/files/lib/rumai/ixp/message_rb.html +0 -120
  290. data/doc/api/files/lib/rumai/ixp/message_spec_rb.html +0 -175
  291. data/doc/api/files/lib/rumai/ixp/message_spec_rb.src/M000001.html +0 -37
  292. data/doc/api/files/lib/rumai/ixp/transport_rb.html +0 -115
  293. data/doc/api/files/lib/rumai/ixp_rb.html +0 -116
  294. data/doc/api/files/lib/rumai/nfo_rb.html +0 -107
  295. data/doc/api/files/lib/rumai/wm_rb.html +0 -115
  296. data/doc/api/files/lib/rumai_rb.html +0 -115
  297. data/doc/api/fr_class_index.html +0 -82
  298. data/doc/api/fr_file_index.html +0 -34
  299. data/doc/api/fr_method_index.html +0 -172
  300. data/doc/api/rdoc-style.css +0 -208
  301. data/doc/guide.erb +0 -390
  302. data/doc/guide.html +0 -2043
  303. data/lib/rumai/ixp/message_spec.rb +0 -247
  304. data/lib/rumai/nfo.rb +0 -24
@@ -0,0 +1,53 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
+ <html>
4
+ <head>
5
+ <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
6
+ <link rel="stylesheet" href="style.css" type="text/css" charset="utf-8" />
7
+ <link rel="stylesheet" href="syntax_highlight.css" type="text/css" charset="utf-8" />
8
+
9
+ <script src="jquery.js" type="text/javascript" charset="utf-8"></script>
10
+ <script src="app.js" type="text/javascript" charset="utf-8"></script>
11
+ <title>Class: StringIO</title>
12
+ </head>
13
+ <body>
14
+ <div id="content">
15
+ <div class="section class StringIO">
16
+ <h1 class="title">Class: StringIO</h1>
17
+ <div class="section inheritance">
18
+ <ul>
19
+ <li><a href="Object.html" title="Object">Object</a></li><ul><li>StringIO</li>
20
+ </ul></ul>
21
+ </div><div class="section mixins">
22
+ <h1>Included Modules</h1>
23
+ <p><a href="Rumai/IXP/Stream.html" title="Rumai::IXP::Stream">Rumai::IXP::Stream</a></p>
24
+ </div><div class="section constants">
25
+ <div class="included">
26
+
27
+ <div>
28
+ <h1>Constants Included from <a href="Rumai/IXP/Stream.html" title="Rumai::IXP::Stream">Rumai::IXP::Stream</a></h1>
29
+ <p><span class='name'><a href="Rumai/IXP/Stream.html#PACKING_FLAGS-constant" title="PACKING_FLAGS">PACKING_FLAGS</a></span></p>
30
+ </div>
31
+
32
+ </div>
33
+ <div class="clear"></div>
34
+ </div> <div class="section visibilitygroup public">
35
+ <h1>Public Visibility</h1>
36
+ <div class="section methodsummary instance public">
37
+ <div class="included">
38
+
39
+ <div>
40
+ <h1>Public Instance Methods Included from <a href="Rumai/IXP/Stream.html" title="Rumai::IXP::Stream">Rumai::IXP::Stream</a></h1>
41
+ <p><span class='name'><a href="Rumai/IXP/Stream.html#read_9p-instance_method" title="read_9p">read_9p</a></span></p>
42
+ </div>
43
+
44
+ </div>
45
+ <div class="clear"></div>
46
+ </div>
47
+
48
+ </div>
49
+
50
+ </div>
51
+ </div>
52
+ </body>
53
+ </html>
data/doc/api/Time.html ADDED
@@ -0,0 +1,175 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
+ <html>
4
+ <head>
5
+ <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
6
+ <link rel="stylesheet" href="style.css" type="text/css" charset="utf-8" />
7
+ <link rel="stylesheet" href="syntax_highlight.css" type="text/css" charset="utf-8" />
8
+
9
+ <script src="jquery.js" type="text/javascript" charset="utf-8"></script>
10
+ <script src="app.js" type="text/javascript" charset="utf-8"></script>
11
+ <title>Class: Time</title>
12
+ </head>
13
+ <body>
14
+ <div id="content">
15
+ <div class="section class Time">
16
+ <h1 class="title">Class: Time</h1>
17
+ <div class="section inheritance">
18
+ <ul>
19
+ <li><a href="Object.html" title="Object">Object</a></li><ul><li>Time</li>
20
+ </ul></ul>
21
+ </div><div class="section constants">
22
+
23
+ </div> <div class="section visibilitygroup public">
24
+ <h1>Public Visibility</h1>
25
+ <div class="section methodsummary class public">
26
+ <h1>Public Class Method Summary</h1>
27
+ <table class="summary">
28
+
29
+ <tr>
30
+ <th class="signature">
31
+ <span class='name'><a href="#from_9p-class_method" title="from_9p">from_9p</a></span><span class='args'>(aStream)</span>
32
+ <span class='block'></span>
33
+
34
+ </th>
35
+ <td class="docstring">
36
+ <p>
37
+ Creates a new instance of this class from the given 9P2000 byte stream and
38
+ returns the instance.
39
+ </p>
40
+
41
+
42
+ </td>
43
+ </tr>
44
+
45
+ </table>
46
+ </div>
47
+ <div class="section methodsummary instance public">
48
+ <h1>Public Instance Method Summary</h1>
49
+ <table class="summary">
50
+
51
+ <tr>
52
+ <th class="signature">
53
+ <span class='name'><a href="#to_9p-instance_method" title="#to_9p">#to_9p</a></span><span class='args'></span>
54
+ <span class='block'></span>
55
+
56
+ </th>
57
+ <td class="docstring">
58
+ <p>
59
+ Transforms this object into a string of 9P2000 bytes.
60
+ </p>
61
+
62
+
63
+ </td>
64
+ </tr>
65
+
66
+ </table>
67
+ </div>
68
+ <div class="section methoddetails class public">
69
+ <h1>Public Class Method Details</h1>
70
+
71
+ <div class="method">
72
+ <div class="method_header">
73
+ <h3>from_9p</h3>
74
+ </div><div id="from_9p-class_method" class="section method">
75
+ <div class="details_title">
76
+ <div class='section methodsignature'>
77
+ <tt class='def'>
78
+ <span class='visibility'>public</span>
79
+ <span class='return_types'></span>
80
+ <span class='name'>from_9p</span><span class='args'>(aStream)</span>
81
+ <span class='block'></span>
82
+ </tt>
83
+ </div>
84
+
85
+ </div><div class="section docstring">
86
+ <p>
87
+ Creates a new instance of this class from the given 9P2000 byte stream and
88
+ returns the instance.
89
+ </p>
90
+
91
+ </div><div class="section source">
92
+ <span>[<a class="source_link" href="#">View source</a>]</span>
93
+ <div class="source_code">
94
+ <table>
95
+ <tr>
96
+ <td>
97
+ <pre class="lines">
98
+
99
+
100
+ 610
101
+ 611
102
+ 612</pre>
103
+ </td>
104
+ <td>
105
+ <pre class="code"><span class="info file"># File 'lib/rumai/ixp/message.rb', line 610</span>
106
+
107
+ <span class='def def kw'>def</span> <span class='self self kw'>self</span><span class='dot token'>.</span><span class='from_9p identifier id'>from_9p</span> <span class='aStream identifier id'>aStream</span>
108
+ <span class='at identifier id'>at</span> <span class='aStream identifier id'>aStream</span><span class='dot token'>.</span><span class='read_9p identifier id'>read_9p</span><span class='lparen token'>(</span><span class='integer val'>4</span><span class='rparen token'>)</span>
109
+ <span class='end end kw'>end</span>
110
+ </pre>
111
+ </td>
112
+ </tr>
113
+ </table>
114
+ </div>
115
+ </div>
116
+ </div>
117
+ </div>
118
+
119
+ </div><div class="section methoddetails instance public">
120
+ <h1>Public Instance Method Details</h1>
121
+
122
+ <div class="method">
123
+ <div class="method_header">
124
+ <h3>to_9p</h3>
125
+ </div><div id="to_9p-instance_method" class="section method">
126
+ <div class="details_title">
127
+ <div class='section methodsignature'>
128
+ <tt class='def'>
129
+ <span class='visibility'>public</span>
130
+ <span class='return_types'></span>
131
+ <span class='name'>to_9p</span><span class='args'></span>
132
+ <span class='block'></span>
133
+ </tt>
134
+ </div>
135
+
136
+ </div><div class="section docstring">
137
+ <p>
138
+ Transforms this object into a string of 9P2000 bytes.
139
+ </p>
140
+
141
+ </div><div class="section source">
142
+ <span>[<a class="source_link" href="#">View source</a>]</span>
143
+ <div class="source_code">
144
+ <table>
145
+ <tr>
146
+ <td>
147
+ <pre class="lines">
148
+
149
+
150
+ 604
151
+ 605
152
+ 606</pre>
153
+ </td>
154
+ <td>
155
+ <pre class="code"><span class="info file"># File 'lib/rumai/ixp/message.rb', line 604</span>
156
+
157
+ <span class='def def kw'>def</span> <span class='to_9p identifier id'>to_9p</span>
158
+ <span class='to_i identifier id'>to_i</span><span class='dot token'>.</span><span class='to_9p identifier id'>to_9p</span><span class='lparen token'>(</span><span class='integer val'>4</span><span class='rparen token'>)</span>
159
+ <span class='end end kw'>end</span>
160
+ </pre>
161
+ </td>
162
+ </tr>
163
+ </table>
164
+ </div>
165
+ </div>
166
+ </div>
167
+ </div>
168
+
169
+ </div>
170
+ </div>
171
+
172
+ </div>
173
+ </div>
174
+ </body>
175
+ </html>
@@ -0,0 +1,1436 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
+ <html>
4
+ <head>
5
+ <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
6
+ <link rel="stylesheet" href="style.css" type="text/css" charset="utf-8" />
7
+ <link rel="stylesheet" href="syntax_highlight.css" type="text/css" charset="utf-8" />
8
+
9
+ <title>All Modules / Classes</title>
10
+ <base target="main" />
11
+ </head>
12
+ <body>
13
+ <div id="nav" class="methods">
14
+ <h1>Method List</h1>
15
+ <ul>
16
+
17
+
18
+ <li nowrap>
19
+ <a href="Integer.html#to_9p-instance_method" title="#to_9p">#to_9p</a>
20
+
21
+ <em>(class Integer)</em>
22
+
23
+ </li>
24
+
25
+
26
+ <li nowrap>
27
+ <a href="MODES.html#parse-class_method" title="parse">parse</a>
28
+
29
+ <em>(proxy MODES)</em>
30
+
31
+ </li>
32
+
33
+
34
+ <li nowrap>
35
+ <a href="Rumai.html#client_ids-instance_method" title="#client_ids">#client_ids</a>
36
+
37
+ <em>(module Rumai)</em>
38
+
39
+ </li>
40
+
41
+
42
+ <li nowrap>
43
+ <a href="Rumai.html#curr_area-instance_method" title="#curr_area">#curr_area</a>
44
+
45
+ <em>(module Rumai)</em>
46
+
47
+ </li>
48
+
49
+
50
+ <li nowrap>
51
+ <a href="Rumai.html#curr_client-instance_method" title="#curr_client">#curr_client</a>
52
+
53
+ <em>(module Rumai)</em>
54
+
55
+ </li>
56
+
57
+
58
+ <li nowrap>
59
+ <a href="Rumai.html#curr_tag-instance_method" title="#curr_tag">#curr_tag</a>
60
+
61
+ <em>(module Rumai)</em>
62
+
63
+ </li>
64
+
65
+
66
+ <li nowrap>
67
+ <a href="Rumai.html#curr_view-instance_method" title="#curr_view">#curr_view</a>
68
+
69
+ <em>(module Rumai)</em>
70
+
71
+ </li>
72
+
73
+
74
+ <li nowrap>
75
+ <a href="Rumai.html#focus_area-instance_method" title="#focus_area">#focus_area</a>
76
+
77
+ <em>(module Rumai)</em>
78
+
79
+ </li>
80
+
81
+
82
+ <li nowrap>
83
+ <a href="Rumai.html#focus_client-instance_method" title="#focus_client">#focus_client</a>
84
+
85
+ <em>(module Rumai)</em>
86
+
87
+ </li>
88
+
89
+
90
+ <li nowrap>
91
+ <a href="Rumai.html#focus_view-instance_method" title="#focus_view">#focus_view</a>
92
+
93
+ <em>(module Rumai)</em>
94
+
95
+ </li>
96
+
97
+
98
+ <li nowrap>
99
+ <a href="Rumai.html#fs-instance_method" title="#fs">#fs</a>
100
+
101
+ <em>(module Rumai)</em>
102
+
103
+ </li>
104
+
105
+
106
+ <li nowrap>
107
+ <a href="Rumai.html#grouping-instance_method" title="#grouping">#grouping</a>
108
+
109
+ <em>(module Rumai)</em>
110
+
111
+ </li>
112
+
113
+
114
+ <li nowrap>
115
+ <a href="Rumai.html#next_area-instance_method" title="#next_area">#next_area</a>
116
+
117
+ <em>(module Rumai)</em>
118
+
119
+ </li>
120
+
121
+
122
+ <li nowrap>
123
+ <a href="Rumai.html#next_client-instance_method" title="#next_client">#next_client</a>
124
+
125
+ <em>(module Rumai)</em>
126
+
127
+ </li>
128
+
129
+
130
+ <li nowrap>
131
+ <a href="Rumai.html#next_tag-instance_method" title="#next_tag">#next_tag</a>
132
+
133
+ <em>(module Rumai)</em>
134
+
135
+ </li>
136
+
137
+
138
+ <li nowrap>
139
+ <a href="Rumai.html#next_view-instance_method" title="#next_view">#next_view</a>
140
+
141
+ <em>(module Rumai)</em>
142
+
143
+ </li>
144
+
145
+
146
+ <li nowrap>
147
+ <a href="Rumai.html#prev_area-instance_method" title="#prev_area">#prev_area</a>
148
+
149
+ <em>(module Rumai)</em>
150
+
151
+ </li>
152
+
153
+
154
+ <li nowrap>
155
+ <a href="Rumai.html#prev_client-instance_method" title="#prev_client">#prev_client</a>
156
+
157
+ <em>(module Rumai)</em>
158
+
159
+ </li>
160
+
161
+
162
+ <li nowrap>
163
+ <a href="Rumai.html#prev_tag-instance_method" title="#prev_tag">#prev_tag</a>
164
+
165
+ <em>(module Rumai)</em>
166
+
167
+ </li>
168
+
169
+
170
+ <li nowrap>
171
+ <a href="Rumai.html#prev_view-instance_method" title="#prev_view">#prev_view</a>
172
+
173
+ <em>(module Rumai)</em>
174
+
175
+ </li>
176
+
177
+
178
+ <li nowrap>
179
+ <a href="Rumai.html#tags-instance_method" title="#tags">#tags</a>
180
+
181
+ <em>(module Rumai)</em>
182
+
183
+ </li>
184
+
185
+
186
+ <li nowrap>
187
+ <a href="Rumai.html#views-instance_method" title="#views">#views</a>
188
+
189
+ <em>(module Rumai)</em>
190
+
191
+ </li>
192
+
193
+
194
+ <li nowrap>
195
+ <a href="Rumai/Area.html#%3C%3C-instance_method" title="#&lt;&lt;">#&lt;&lt;</a>
196
+
197
+ <em>(class Area)</em>
198
+
199
+ </li>
200
+
201
+
202
+ <li nowrap>
203
+ <a href="Rumai/Area.html#chain-instance_method" title="#chain">#chain</a>
204
+
205
+ <em>(class Area)</em>
206
+
207
+ </li>
208
+
209
+
210
+ <li nowrap>
211
+ <a href="Rumai/Area.html#client_ids-instance_method" title="#client_ids">#client_ids</a>
212
+
213
+ <em>(class Area)</em>
214
+
215
+ </li>
216
+
217
+
218
+ <li nowrap>
219
+ <a href="Rumai/Area.html#column%3F-instance_method" title="#column?">#column?</a>
220
+
221
+ <em>(class Area)</em>
222
+
223
+ </li>
224
+
225
+
226
+ <li nowrap>
227
+ <a href="Rumai/Area.html#concat-instance_method" title="#concat">#concat</a>
228
+
229
+ <em>(class Area)</em>
230
+
231
+ </li>
232
+
233
+
234
+ <li nowrap>
235
+ <a href="Rumai/Area.html#each-instance_method" title="#each">#each</a>
236
+
237
+ <em>(class Area)</em>
238
+
239
+ </li>
240
+
241
+
242
+ <li nowrap>
243
+ <a href="Rumai/Area.html#exist%3F-instance_method" title="#exist?">#exist?</a>
244
+
245
+ <em>(class Area)</em>
246
+
247
+ </li>
248
+
249
+
250
+ <li nowrap>
251
+ <a href="Rumai/Area.html#float%3F-instance_method" title="#float?">#float?</a>
252
+
253
+ <em>(class Area)</em>
254
+
255
+ </li>
256
+
257
+
258
+ <li nowrap>
259
+ <a href="Rumai/Area.html#focus-instance_method" title="#focus">#focus</a>
260
+
261
+ <em>(class Area)</em>
262
+
263
+ </li>
264
+
265
+
266
+ <li nowrap>
267
+ <a href="Rumai/Area.html#fringe-instance_method" title="#fringe">#fringe</a>
268
+
269
+ <em>(class Area)</em>
270
+
271
+ </li>
272
+
273
+
274
+ <li nowrap>
275
+ <a href="Rumai/Area.html#import_client-instance_method" title="#import_client">#import_client</a>
276
+
277
+ <em>(class Area)</em>
278
+
279
+ </li>
280
+
281
+
282
+ <li nowrap>
283
+ <a href="Rumai/Area.html#initialize-instance_method" title="#initialize">#initialize</a>
284
+
285
+ <em>(class Area)</em>
286
+
287
+ </li>
288
+
289
+
290
+ <li nowrap>
291
+ <a href="Rumai/Area.html#insert-instance_method" title="#insert">#insert</a>
292
+
293
+ <em>(class Area)</em>
294
+
295
+ </li>
296
+
297
+
298
+ <li nowrap>
299
+ <a href="Rumai/Area.html#layout-instance_method" title="#layout">#layout</a>
300
+
301
+ <em>(class Area)</em>
302
+
303
+ </li>
304
+
305
+
306
+ <li nowrap>
307
+ <a href="Rumai/Area.html#length-instance_method" title="#length">#length</a>
308
+
309
+ <em>(class Area)</em>
310
+
311
+ </li>
312
+
313
+
314
+ <li nowrap>
315
+ <a href="Rumai/Area.html#push-instance_method" title="#push">#push</a>
316
+
317
+ <em>(class Area)</em>
318
+
319
+ </li>
320
+
321
+
322
+ <li nowrap>
323
+ <a href="Rumai/Area.html#unshift-instance_method" title="#unshift">#unshift</a>
324
+
325
+ <em>(class Area)</em>
326
+
327
+ </li>
328
+
329
+
330
+ <li nowrap>
331
+ <a href="Rumai/Area.html#view-instance_method" title="#view">#view</a>
332
+
333
+ <em>(class Area)</em>
334
+
335
+ </li>
336
+
337
+
338
+ <li nowrap>
339
+ <a href="Rumai/Area.html#curr-class_method" title="curr">curr</a>
340
+
341
+ <em>(class Area)</em>
342
+
343
+ </li>
344
+
345
+
346
+ <li nowrap>
347
+ <a href="Rumai/Chain.html#chain-instance_method" title="#chain">#chain</a>
348
+
349
+ <em>(module Chain)</em>
350
+
351
+ </li>
352
+
353
+
354
+ <li nowrap>
355
+ <a href="Rumai/Chain.html#next-instance_method" title="#next">#next</a>
356
+
357
+ <em>(module Chain)</em>
358
+
359
+ </li>
360
+
361
+
362
+ <li nowrap>
363
+ <a href="Rumai/Chain.html#prev-instance_method" title="#prev">#prev</a>
364
+
365
+ <em>(module Chain)</em>
366
+
367
+ </li>
368
+
369
+
370
+ <li nowrap>
371
+ <a href="Rumai/Chain.html#sibling-instance_method" title="#sibling">#sibling</a>
372
+
373
+ <em>(module Chain)</em>
374
+
375
+ </li>
376
+
377
+
378
+ <li nowrap>
379
+ <a href="Rumai/Client.html#area-instance_method" title="#area">#area</a>
380
+
381
+ <em>(class Client)</em>
382
+
383
+ </li>
384
+
385
+
386
+ <li nowrap>
387
+ <a href="Rumai/Client.html#area_to_id-instance_method" title="#area_to_id">#area_to_id</a>
388
+
389
+ <em>(class Client)</em>
390
+
391
+ </li>
392
+
393
+
394
+ <li nowrap>
395
+ <a href="Rumai/Client.html#chain-instance_method" title="#chain">#chain</a>
396
+
397
+ <em>(class Client)</em>
398
+
399
+ </li>
400
+
401
+
402
+ <li nowrap>
403
+ <a href="Rumai/Client.html#focus-instance_method" title="#focus">#focus</a>
404
+
405
+ <em>(class Client)</em>
406
+
407
+ </li>
408
+
409
+
410
+ <li nowrap>
411
+ <a href="Rumai/Client.html#group-instance_method" title="#group">#group</a>
412
+
413
+ <em>(class Client)</em>
414
+
415
+ </li>
416
+
417
+
418
+ <li nowrap>
419
+ <a href="Rumai/Client.html#group%3F-instance_method" title="#group?">#group?</a>
420
+
421
+ <em>(class Client)</em>
422
+
423
+ </li>
424
+
425
+
426
+ <li nowrap>
427
+ <a href="Rumai/Client.html#initialize-instance_method" title="#initialize">#initialize</a>
428
+
429
+ <em>(class Client)</em>
430
+
431
+ </li>
432
+
433
+
434
+ <li nowrap>
435
+ <a href="Rumai/Client.html#kill-instance_method" title="#kill">#kill</a>
436
+
437
+ <em>(class Client)</em>
438
+
439
+ </li>
440
+
441
+
442
+ <li nowrap>
443
+ <a href="Rumai/Client.html#send-instance_method" title="#send">#send</a>
444
+
445
+ <em>(class Client)</em>
446
+
447
+ </li>
448
+
449
+
450
+ <li nowrap>
451
+ <a href="Rumai/Client.html#swap-instance_method" title="#swap">#swap</a>
452
+
453
+ <em>(class Client)</em>
454
+
455
+ </li>
456
+
457
+
458
+ <li nowrap>
459
+ <a href="Rumai/Client.html#tag-instance_method" title="#tag">#tag</a>
460
+
461
+ <em>(class Client)</em>
462
+
463
+ </li>
464
+
465
+
466
+ <li nowrap>
467
+ <a href="Rumai/Client.html#tags-instance_method" title="#tags">#tags</a>
468
+
469
+ <em>(class Client)</em>
470
+
471
+ </li>
472
+
473
+
474
+ <li nowrap>
475
+ <a href="Rumai/Client.html#toggle_group-instance_method" title="#toggle_group">#toggle_group</a>
476
+
477
+ <em>(class Client)</em>
478
+
479
+ </li>
480
+
481
+
482
+ <li nowrap>
483
+ <a href="Rumai/Client.html#ungroup-instance_method" title="#ungroup">#ungroup</a>
484
+
485
+ <em>(class Client)</em>
486
+
487
+ </li>
488
+
489
+
490
+ <li nowrap>
491
+ <a href="Rumai/Client.html#untag-instance_method" title="#untag">#untag</a>
492
+
493
+ <em>(class Client)</em>
494
+
495
+ </li>
496
+
497
+
498
+ <li nowrap>
499
+ <a href="Rumai/Client.html#views-instance_method" title="#views">#views</a>
500
+
501
+ <em>(class Client)</em>
502
+
503
+ </li>
504
+
505
+
506
+ <li nowrap>
507
+ <a href="Rumai/Client.html#with_tags-instance_method" title="#with_tags">#with_tags</a>
508
+
509
+ <em>(class Client)</em>
510
+
511
+ </li>
512
+
513
+
514
+ <li nowrap>
515
+ <a href="Rumai/Client.html#curr-class_method" title="curr">curr</a>
516
+
517
+ <em>(class Client)</em>
518
+
519
+ </li>
520
+
521
+
522
+ <li nowrap>
523
+ <a href="Rumai/ClientContainer.html#client_ids-instance_method" title="#client_ids">#client_ids</a>
524
+
525
+ <em>(module ClientContainer)</em>
526
+
527
+ </li>
528
+
529
+
530
+ <li nowrap>
531
+ <a href="Rumai/ClientContainer.html#clients-instance_method" title="#clients">#clients</a>
532
+
533
+ <em>(module ClientContainer)</em>
534
+
535
+ </li>
536
+
537
+
538
+ <li nowrap>
539
+ <a href="Rumai/ClientContainer.html#grouping-instance_method" title="#grouping">#grouping</a>
540
+
541
+ <em>(module ClientContainer)</em>
542
+
543
+ </li>
544
+
545
+
546
+ <li nowrap>
547
+ <a href="Rumai/ExportInstMethods.html#extended-class_method" title="extended">extended</a>
548
+
549
+ <em>(module ExportInstMethods)</em>
550
+
551
+ </li>
552
+
553
+
554
+ <li nowrap>
555
+ <a href="Rumai/IXP/Agent.html#attach-instance_method" title="#attach">#attach</a>
556
+
557
+ <em>(class Agent)</em>
558
+
559
+ </li>
560
+
561
+
562
+ <li nowrap>
563
+ <a href="Rumai/IXP/Agent.html#clunk-instance_method" title="#clunk">#clunk</a>
564
+
565
+ <em>(class Agent)</em>
566
+
567
+ </li>
568
+
569
+
570
+ <li nowrap>
571
+ <a href="Rumai/IXP/Agent.html#create-instance_method" title="#create">#create</a>
572
+
573
+ <em>(class Agent)</em>
574
+
575
+ </li>
576
+
577
+
578
+ <li nowrap>
579
+ <a href="Rumai/IXP/Agent.html#entries-instance_method" title="#entries">#entries</a>
580
+
581
+ <em>(class Agent)</em>
582
+
583
+ </li>
584
+
585
+
586
+ <li nowrap>
587
+ <a href="Rumai/IXP/Agent.html#initialize-instance_method" title="#initialize">#initialize</a>
588
+
589
+ <em>(class Agent)</em>
590
+
591
+ </li>
592
+
593
+
594
+ <li nowrap>
595
+ <a href="Rumai/IXP/Agent.html#msize-instance_method" title="#msize">#msize</a>
596
+
597
+ <em>(class Agent)</em>
598
+
599
+ </li>
600
+
601
+
602
+ <li nowrap>
603
+ <a href="Rumai/IXP/Agent.html#open-instance_method" title="#open">#open</a>
604
+
605
+ <em>(class Agent)</em>
606
+
607
+ </li>
608
+
609
+
610
+ <li nowrap>
611
+ <a href="Rumai/IXP/Agent.html#read-instance_method" title="#read">#read</a>
612
+
613
+ <em>(class Agent)</em>
614
+
615
+ </li>
616
+
617
+
618
+ <li nowrap>
619
+ <a href="Rumai/IXP/Agent.html#remove-instance_method" title="#remove">#remove</a>
620
+
621
+ <em>(class Agent)</em>
622
+
623
+ </li>
624
+
625
+
626
+ <li nowrap>
627
+ <a href="Rumai/IXP/Agent.html#remove_fid-instance_method" title="#remove_fid">#remove_fid</a>
628
+
629
+ <em>(class Agent)</em>
630
+
631
+ </li>
632
+
633
+
634
+ <li nowrap>
635
+ <a href="Rumai/IXP/Agent.html#stat-instance_method" title="#stat">#stat</a>
636
+
637
+ <em>(class Agent)</em>
638
+
639
+ </li>
640
+
641
+
642
+ <li nowrap>
643
+ <a href="Rumai/IXP/Agent.html#stat_fid-instance_method" title="#stat_fid">#stat_fid</a>
644
+
645
+ <em>(class Agent)</em>
646
+
647
+ </li>
648
+
649
+
650
+ <li nowrap>
651
+ <a href="Rumai/IXP/Agent.html#talk-instance_method" title="#talk">#talk</a>
652
+
653
+ <em>(class Agent)</em>
654
+
655
+ </li>
656
+
657
+
658
+ <li nowrap>
659
+ <a href="Rumai/IXP/Agent.html#walk-instance_method" title="#walk">#walk</a>
660
+
661
+ <em>(class Agent)</em>
662
+
663
+ </li>
664
+
665
+
666
+ <li nowrap>
667
+ <a href="Rumai/IXP/Agent.html#walk_fid-instance_method" title="#walk_fid">#walk_fid</a>
668
+
669
+ <em>(class Agent)</em>
670
+
671
+ </li>
672
+
673
+
674
+ <li nowrap>
675
+ <a href="Rumai/IXP/Agent.html#with_fid-instance_method" title="#with_fid">#with_fid</a>
676
+
677
+ <em>(class Agent)</em>
678
+
679
+ </li>
680
+
681
+
682
+ <li nowrap>
683
+ <a href="Rumai/IXP/Agent.html#write-instance_method" title="#write">#write</a>
684
+
685
+ <em>(class Agent)</em>
686
+
687
+ </li>
688
+
689
+
690
+ <li nowrap>
691
+ <a href="Rumai/IXP/Agent/FidStream.html#%3C%3C-instance_method" title="#&lt;&lt;">#&lt;&lt;</a>
692
+
693
+ <em>(class FidStream)</em>
694
+
695
+ </li>
696
+
697
+
698
+ <li nowrap>
699
+ <a href="Rumai/IXP/Agent/FidStream.html#close-instance_method" title="#close">#close</a>
700
+
701
+ <em>(class FidStream)</em>
702
+
703
+ </li>
704
+
705
+
706
+ <li nowrap>
707
+ <a href="Rumai/IXP/Agent/FidStream.html#closed%3F-instance_method" title="#closed?">#closed?</a>
708
+
709
+ <em>(class FidStream)</em>
710
+
711
+ </li>
712
+
713
+
714
+ <li nowrap>
715
+ <a href="Rumai/IXP/Agent/FidStream.html#eof-instance_method" title="#eof">#eof</a>
716
+
717
+ <em>(class FidStream)</em>
718
+
719
+ </li>
720
+
721
+
722
+ <li nowrap>
723
+ <a href="Rumai/IXP/Agent/FidStream.html#eof%3F-instance_method" title="#eof?">#eof?</a>
724
+
725
+ <em>(class FidStream)</em>
726
+
727
+ </li>
728
+
729
+
730
+ <li nowrap>
731
+ <a href="Rumai/IXP/Agent/FidStream.html#fid-instance_method" title="#fid">#fid</a>
732
+
733
+ <em>(class FidStream)</em>
734
+
735
+ </li>
736
+
737
+
738
+ <li nowrap>
739
+ <a href="Rumai/IXP/Agent/FidStream.html#initialize-instance_method" title="#initialize">#initialize</a>
740
+
741
+ <em>(class FidStream)</em>
742
+
743
+ </li>
744
+
745
+
746
+ <li nowrap>
747
+ <a href="Rumai/IXP/Agent/FidStream.html#pos-instance_method" title="#pos">#pos</a>
748
+
749
+ <em>(class FidStream)</em>
750
+
751
+ </li>
752
+
753
+
754
+ <li nowrap>
755
+ <a href="Rumai/IXP/Agent/FidStream.html#pos%3D-instance_method" title="#pos=">#pos=</a>
756
+
757
+ <em>(class FidStream)</em>
758
+
759
+ </li>
760
+
761
+
762
+ <li nowrap>
763
+ <a href="Rumai/IXP/Agent/FidStream.html#read-instance_method" title="#read">#read</a>
764
+
765
+ <em>(class FidStream)</em>
766
+
767
+ </li>
768
+
769
+
770
+ <li nowrap>
771
+ <a href="Rumai/IXP/Agent/FidStream.html#rewind-instance_method" title="#rewind">#rewind</a>
772
+
773
+ <em>(class FidStream)</em>
774
+
775
+ </li>
776
+
777
+
778
+ <li nowrap>
779
+ <a href="Rumai/IXP/Agent/FidStream.html#stat-instance_method" title="#stat">#stat</a>
780
+
781
+ <em>(class FidStream)</em>
782
+
783
+ </li>
784
+
785
+
786
+ <li nowrap>
787
+ <a href="Rumai/IXP/Agent/FidStream.html#tell-instance_method" title="#tell">#tell</a>
788
+
789
+ <em>(class FidStream)</em>
790
+
791
+ </li>
792
+
793
+
794
+ <li nowrap>
795
+ <a href="Rumai/IXP/Agent/FidStream.html#write-instance_method" title="#write">#write</a>
796
+
797
+ <em>(class FidStream)</em>
798
+
799
+ </li>
800
+
801
+
802
+ <li nowrap>
803
+ <a href="Rumai/IXP/Agent/RangedPool.html#initialize-instance_method" title="#initialize">#initialize</a>
804
+
805
+ <em>(class RangedPool)</em>
806
+
807
+ </li>
808
+
809
+
810
+ <li nowrap>
811
+ <a href="Rumai/IXP/Agent/RangedPool.html#obtain-instance_method" title="#obtain">#obtain</a>
812
+
813
+ <em>(class RangedPool)</em>
814
+
815
+ </li>
816
+
817
+
818
+ <li nowrap>
819
+ <a href="Rumai/IXP/Agent/RangedPool.html#release-instance_method" title="#release">#release</a>
820
+
821
+ <em>(class RangedPool)</em>
822
+
823
+ </li>
824
+
825
+
826
+ <li nowrap>
827
+ <a href="Rumai/IXP/Fcall.html#to_9p-instance_method" title="#to_9p">#to_9p</a>
828
+
829
+ <em>(class Fcall)</em>
830
+
831
+ </li>
832
+
833
+
834
+ <li nowrap>
835
+ <a href="Rumai/IXP/Fcall.html#type-instance_method" title="#type">#type</a>
836
+
837
+ <em>(class Fcall)</em>
838
+
839
+ </li>
840
+
841
+
842
+ <li nowrap>
843
+ <a href="Rumai/IXP/Fcall.html#__from_9p__-class_method" title="__from_9p__">__from_9p__</a>
844
+
845
+ <em>(class Fcall)</em>
846
+
847
+ </li>
848
+
849
+
850
+ <li nowrap>
851
+ <a href="Rumai/IXP/Fcall.html#from_9p-class_method" title="from_9p">from_9p</a>
852
+
853
+ <em>(class Fcall)</em>
854
+
855
+ </li>
856
+
857
+
858
+ <li nowrap>
859
+ <a href="Rumai/IXP/Fcall.html#type-class_method" title="type">type</a>
860
+
861
+ <em>(class Fcall)</em>
862
+
863
+ </li>
864
+
865
+
866
+ <li nowrap>
867
+ <a href="Rumai/IXP/Stat.html#directory%3F-instance_method" title="#directory?">#directory?</a>
868
+
869
+ <em>(class Stat)</em>
870
+
871
+ </li>
872
+
873
+
874
+ <li nowrap>
875
+ <a href="Rumai/IXP/Stream.html#read_9p-instance_method" title="#read_9p">#read_9p</a>
876
+
877
+ <em>(module Stream)</em>
878
+
879
+ </li>
880
+
881
+
882
+ <li nowrap>
883
+ <a href="Rumai/IXP/Struct.html#fields-instance_method" title="#fields">#fields</a>
884
+
885
+ <em>(module Struct)</em>
886
+
887
+ </li>
888
+
889
+
890
+ <li nowrap>
891
+ <a href="Rumai/IXP/Struct.html#initialize-instance_method" title="#initialize">#initialize</a>
892
+
893
+ <em>(module Struct)</em>
894
+
895
+ </li>
896
+
897
+
898
+ <li nowrap>
899
+ <a href="Rumai/IXP/Struct.html#load_9p-instance_method" title="#load_9p">#load_9p</a>
900
+
901
+ <em>(module Struct)</em>
902
+
903
+ </li>
904
+
905
+
906
+ <li nowrap>
907
+ <a href="Rumai/IXP/Struct.html#to_9p-instance_method" title="#to_9p">#to_9p</a>
908
+
909
+ <em>(module Struct)</em>
910
+
911
+ </li>
912
+
913
+
914
+ <li nowrap>
915
+ <a href="Rumai/IXP/Struct/ClassField.html#value_from_9p-instance_method" title="#value_from_9p">#value_from_9p</a>
916
+
917
+ <em>(class ClassField)</em>
918
+
919
+ </li>
920
+
921
+
922
+ <li nowrap>
923
+ <a href="Rumai/IXP/Struct/ClassField.html#value_to_9p-instance_method" title="#value_to_9p">#value_to_9p</a>
924
+
925
+ <em>(class ClassField)</em>
926
+
927
+ </li>
928
+
929
+
930
+ <li nowrap>
931
+ <a href="Rumai/IXP/Struct/Field.html#countee-instance_method" title="#countee">#countee</a>
932
+
933
+ <em>(class Field)</em>
934
+
935
+ </li>
936
+
937
+
938
+ <li nowrap>
939
+ <a href="Rumai/IXP/Struct/Field.html#counter-instance_method" title="#counter">#counter</a>
940
+
941
+ <em>(class Field)</em>
942
+
943
+ </li>
944
+
945
+
946
+ <li nowrap>
947
+ <a href="Rumai/IXP/Struct/Field.html#format-instance_method" title="#format">#format</a>
948
+
949
+ <em>(class Field)</em>
950
+
951
+ </li>
952
+
953
+
954
+ <li nowrap>
955
+ <a href="Rumai/IXP/Struct/Field.html#initialize-instance_method" title="#initialize">#initialize</a>
956
+
957
+ <em>(class Field)</em>
958
+
959
+ </li>
960
+
961
+
962
+ <li nowrap>
963
+ <a href="Rumai/IXP/Struct/Field.html#load_9p-instance_method" title="#load_9p">#load_9p</a>
964
+
965
+ <em>(class Field)</em>
966
+
967
+ </li>
968
+
969
+
970
+ <li nowrap>
971
+ <a href="Rumai/IXP/Struct/Field.html#name-instance_method" title="#name">#name</a>
972
+
973
+ <em>(class Field)</em>
974
+
975
+ </li>
976
+
977
+
978
+ <li nowrap>
979
+ <a href="Rumai/IXP/Struct/Field.html#to_9p-instance_method" title="#to_9p">#to_9p</a>
980
+
981
+ <em>(class Field)</em>
982
+
983
+ </li>
984
+
985
+
986
+ <li nowrap>
987
+ <a href="Rumai/IXP/Struct/Field.html#value_from_9p-instance_method" title="#value_from_9p">#value_from_9p</a>
988
+
989
+ <em>(class Field)</em>
990
+
991
+ </li>
992
+
993
+
994
+ <li nowrap>
995
+ <a href="Rumai/IXP/Struct/Field.html#value_to_9p-instance_method" title="#value_to_9p">#value_to_9p</a>
996
+
997
+ <em>(class Field)</em>
998
+
999
+ </li>
1000
+
1001
+
1002
+ <li nowrap>
1003
+ <a href="Rumai/IXP/Struct/Field/CounteeField.html#load_9p-instance_method" title="#load_9p">#load_9p</a>
1004
+
1005
+ <em>(module CounteeField)</em>
1006
+
1007
+ </li>
1008
+
1009
+
1010
+ <li nowrap>
1011
+ <a href="Rumai/IXP/Struct/Field/CounteeField.html#to_9p-instance_method" title="#to_9p">#to_9p</a>
1012
+
1013
+ <em>(module CounteeField)</em>
1014
+
1015
+ </li>
1016
+
1017
+
1018
+ <li nowrap>
1019
+ <a href="Rumai/IXP/Struct/Field/CounterField.html#to_9p-instance_method" title="#to_9p">#to_9p</a>
1020
+
1021
+ <em>(module CounterField)</em>
1022
+
1023
+ </li>
1024
+
1025
+
1026
+ <li nowrap>
1027
+ <a href="Rumai/IXP/Struct/Field.html#factory-class_method" title="factory">factory</a>
1028
+
1029
+ <em>(class Field)</em>
1030
+
1031
+ </li>
1032
+
1033
+
1034
+ <li nowrap>
1035
+ <a href="Rumai/IXP/Struct/Integer8Field.html#value_from_9p-instance_method" title="#value_from_9p">#value_from_9p</a>
1036
+
1037
+ <em>(class Integer8Field)</em>
1038
+
1039
+ </li>
1040
+
1041
+
1042
+ <li nowrap>
1043
+ <a href="Rumai/IXP/Struct/Integer8Field.html#value_to_9p-instance_method" title="#value_to_9p">#value_to_9p</a>
1044
+
1045
+ <em>(class Integer8Field)</em>
1046
+
1047
+ </li>
1048
+
1049
+
1050
+ <li nowrap>
1051
+ <a href="Rumai/IXP/Struct/StringField.html#value_to_9p-instance_method" title="#value_to_9p">#value_to_9p</a>
1052
+
1053
+ <em>(class StringField)</em>
1054
+
1055
+ </li>
1056
+
1057
+
1058
+ <li nowrap>
1059
+ <a href="Rumai/IXP/Struct.html#included-class_method" title="included">included</a>
1060
+
1061
+ <em>(module Struct)</em>
1062
+
1063
+ </li>
1064
+
1065
+
1066
+ <li nowrap>
1067
+ <a href="Rumai/IXP/Terror.html#to_9p-instance_method" title="#to_9p">#to_9p</a>
1068
+
1069
+ <em>(class Terror)</em>
1070
+
1071
+ </li>
1072
+
1073
+
1074
+ <li nowrap>
1075
+ <a href="Rumai/Node.html#%5B%5D-instance_method" title="#[]">#[]</a>
1076
+
1077
+ <em>(class Node)</em>
1078
+
1079
+ </li>
1080
+
1081
+
1082
+ <li nowrap>
1083
+ <a href="Rumai/Node.html#children-instance_method" title="#children">#children</a>
1084
+
1085
+ <em>(class Node)</em>
1086
+
1087
+ </li>
1088
+
1089
+
1090
+ <li nowrap>
1091
+ <a href="Rumai/Node.html#clear-instance_method" title="#clear">#clear</a>
1092
+
1093
+ <em>(class Node)</em>
1094
+
1095
+ </li>
1096
+
1097
+
1098
+ <li nowrap>
1099
+ <a href="Rumai/Node.html#create-instance_method" title="#create">#create</a>
1100
+
1101
+ <em>(class Node)</em>
1102
+
1103
+ </li>
1104
+
1105
+
1106
+ <li nowrap>
1107
+ <a href="Rumai/Node.html#directory%3F-instance_method" title="#directory?">#directory?</a>
1108
+
1109
+ <em>(class Node)</em>
1110
+
1111
+ </li>
1112
+
1113
+
1114
+ <li nowrap>
1115
+ <a href="Rumai/Node.html#each-instance_method" title="#each">#each</a>
1116
+
1117
+ <em>(class Node)</em>
1118
+
1119
+ </li>
1120
+
1121
+
1122
+ <li nowrap>
1123
+ <a href="Rumai/Node.html#each_line-instance_method" title="#each_line">#each_line</a>
1124
+
1125
+ <em>(class Node)</em>
1126
+
1127
+ </li>
1128
+
1129
+
1130
+ <li nowrap>
1131
+ <a href="Rumai/Node.html#entries-instance_method" title="#entries">#entries</a>
1132
+
1133
+ <em>(class Node)</em>
1134
+
1135
+ </li>
1136
+
1137
+
1138
+ <li nowrap>
1139
+ <a href="Rumai/Node.html#exist%3F-instance_method" title="#exist?">#exist?</a>
1140
+
1141
+ <em>(class Node)</em>
1142
+
1143
+ </li>
1144
+
1145
+
1146
+ <li nowrap>
1147
+ <a href="Rumai/Node.html#initialize-instance_method" title="#initialize">#initialize</a>
1148
+
1149
+ <em>(class Node)</em>
1150
+
1151
+ </li>
1152
+
1153
+
1154
+ <li nowrap>
1155
+ <a href="Rumai/Node.html#method_missing-instance_method" title="#method_missing">#method_missing</a>
1156
+
1157
+ <em>(class Node)</em>
1158
+
1159
+ </li>
1160
+
1161
+
1162
+ <li nowrap>
1163
+ <a href="Rumai/Node.html#open-instance_method" title="#open">#open</a>
1164
+
1165
+ <em>(class Node)</em>
1166
+
1167
+ </li>
1168
+
1169
+
1170
+ <li nowrap>
1171
+ <a href="Rumai/Node.html#parent-instance_method" title="#parent">#parent</a>
1172
+
1173
+ <em>(class Node)</em>
1174
+
1175
+ </li>
1176
+
1177
+
1178
+ <li nowrap>
1179
+ <a href="Rumai/Node.html#path-instance_method" title="#path">#path</a>
1180
+
1181
+ <em>(class Node)</em>
1182
+
1183
+ </li>
1184
+
1185
+
1186
+ <li nowrap>
1187
+ <a href="Rumai/Node.html#read-instance_method" title="#read">#read</a>
1188
+
1189
+ <em>(class Node)</em>
1190
+
1191
+ </li>
1192
+
1193
+
1194
+ <li nowrap>
1195
+ <a href="Rumai/Node.html#remove-instance_method" title="#remove">#remove</a>
1196
+
1197
+ <em>(class Node)</em>
1198
+
1199
+ </li>
1200
+
1201
+
1202
+ <li nowrap>
1203
+ <a href="Rumai/Node.html#stat-instance_method" title="#stat">#stat</a>
1204
+
1205
+ <em>(class Node)</em>
1206
+
1207
+ </li>
1208
+
1209
+
1210
+ <li nowrap>
1211
+ <a href="Rumai/Node.html#write-instance_method" title="#write">#write</a>
1212
+
1213
+ <em>(class Node)</em>
1214
+
1215
+ </li>
1216
+
1217
+
1218
+ <li nowrap>
1219
+ <a href="Rumai/View.html#area_ids-instance_method" title="#area_ids">#area_ids</a>
1220
+
1221
+ <em>(class View)</em>
1222
+
1223
+ </li>
1224
+
1225
+
1226
+ <li nowrap>
1227
+ <a href="Rumai/View.html#area_of_client-instance_method" title="#area_of_client">#area_of_client</a>
1228
+
1229
+ <em>(class View)</em>
1230
+
1231
+ </li>
1232
+
1233
+
1234
+ <li nowrap>
1235
+ <a href="Rumai/View.html#areas-instance_method" title="#areas">#areas</a>
1236
+
1237
+ <em>(class View)</em>
1238
+
1239
+ </li>
1240
+
1241
+
1242
+ <li nowrap>
1243
+ <a href="Rumai/View.html#arrange_as_larswm-instance_method" title="#arrange_as_larswm">#arrange_as_larswm</a>
1244
+
1245
+ <em>(class View)</em>
1246
+
1247
+ </li>
1248
+
1249
+
1250
+ <li nowrap>
1251
+ <a href="Rumai/View.html#arrange_in_diamond-instance_method" title="#arrange_in_diamond">#arrange_in_diamond</a>
1252
+
1253
+ <em>(class View)</em>
1254
+
1255
+ </li>
1256
+
1257
+
1258
+ <li nowrap>
1259
+ <a href="Rumai/View.html#arrange_in_grid-instance_method" title="#arrange_in_grid">#arrange_in_grid</a>
1260
+
1261
+ <em>(class View)</em>
1262
+
1263
+ </li>
1264
+
1265
+
1266
+ <li nowrap>
1267
+ <a href="Rumai/View.html#chain-instance_method" title="#chain">#chain</a>
1268
+
1269
+ <em>(class View)</em>
1270
+
1271
+ </li>
1272
+
1273
+
1274
+ <li nowrap>
1275
+ <a href="Rumai/View.html#client_ids-instance_method" title="#client_ids">#client_ids</a>
1276
+
1277
+ <em>(class View)</em>
1278
+
1279
+ </li>
1280
+
1281
+
1282
+ <li nowrap>
1283
+ <a href="Rumai/View.html#columns-instance_method" title="#columns">#columns</a>
1284
+
1285
+ <em>(class View)</em>
1286
+
1287
+ </li>
1288
+
1289
+
1290
+ <li nowrap>
1291
+ <a href="Rumai/View.html#each-instance_method" title="#each">#each</a>
1292
+
1293
+ <em>(class View)</em>
1294
+
1295
+ </li>
1296
+
1297
+
1298
+ <li nowrap>
1299
+ <a href="Rumai/View.html#each_column-instance_method" title="#each_column">#each_column</a>
1300
+
1301
+ <em>(class View)</em>
1302
+
1303
+ </li>
1304
+
1305
+
1306
+ <li nowrap>
1307
+ <a href="Rumai/View.html#floater-instance_method" title="#floater">#floater</a>
1308
+
1309
+ <em>(class View)</em>
1310
+
1311
+ </li>
1312
+
1313
+
1314
+ <li nowrap>
1315
+ <a href="Rumai/View.html#focus-instance_method" title="#focus">#focus</a>
1316
+
1317
+ <em>(class View)</em>
1318
+
1319
+ </li>
1320
+
1321
+
1322
+ <li nowrap>
1323
+ <a href="Rumai/View.html#initialize-instance_method" title="#initialize">#initialize</a>
1324
+
1325
+ <em>(class View)</em>
1326
+
1327
+ </li>
1328
+
1329
+
1330
+ <li nowrap>
1331
+ <a href="Rumai/View.html#manifest-instance_method" title="#manifest">#manifest</a>
1332
+
1333
+ <em>(class View)</em>
1334
+
1335
+ </li>
1336
+
1337
+
1338
+ <li nowrap>
1339
+ <a href="Rumai/View.html#num_managed_clients-instance_method" title="#num_managed_clients">#num_managed_clients</a>
1340
+
1341
+ <em>(class View)</em>
1342
+
1343
+ </li>
1344
+
1345
+
1346
+ <li nowrap>
1347
+ <a href="Rumai/View.html#squeeze-instance_method" title="#squeeze">#squeeze</a>
1348
+
1349
+ <em>(class View)</em>
1350
+
1351
+ </li>
1352
+
1353
+
1354
+ <li nowrap>
1355
+ <a href="Rumai/View.html#curr-class_method" title="curr">curr</a>
1356
+
1357
+ <em>(class View)</em>
1358
+
1359
+ </li>
1360
+
1361
+
1362
+ <li nowrap>
1363
+ <a href="Rumai/WidgetImpl.html#%3D%3D-instance_method" title="#==">#==</a>
1364
+
1365
+ <em>(module WidgetImpl)</em>
1366
+
1367
+ </li>
1368
+
1369
+
1370
+ <li nowrap>
1371
+ <a href="Rumai/WidgetImpl.html#current%3F-instance_method" title="#current?">#current?</a>
1372
+
1373
+ <em>(module WidgetImpl)</em>
1374
+
1375
+ </li>
1376
+
1377
+
1378
+ <li nowrap>
1379
+ <a href="Rumai/WidgetImpl.html#focus%3F-instance_method" title="#focus?">#focus?</a>
1380
+
1381
+ <em>(module WidgetImpl)</em>
1382
+
1383
+ </li>
1384
+
1385
+
1386
+ <li nowrap>
1387
+ <a href="Rumai/WidgetImpl.html#id-instance_method" title="#id">#id</a>
1388
+
1389
+ <em>(module WidgetImpl)</em>
1390
+
1391
+ </li>
1392
+
1393
+
1394
+ <li nowrap>
1395
+ <a href="Rumai/WidgetNode.html#initialize-instance_method" title="#initialize">#initialize</a>
1396
+
1397
+ <em>(class WidgetNode)</em>
1398
+
1399
+ </li>
1400
+
1401
+
1402
+ <li nowrap>
1403
+ <a href="String.html#to_9p-instance_method" title="#to_9p">#to_9p</a>
1404
+
1405
+ <em>(class String)</em>
1406
+
1407
+ </li>
1408
+
1409
+
1410
+ <li nowrap>
1411
+ <a href="String.html#from_9p-class_method" title="from_9p">from_9p</a>
1412
+
1413
+ <em>(class String)</em>
1414
+
1415
+ </li>
1416
+
1417
+
1418
+ <li nowrap>
1419
+ <a href="Time.html#to_9p-instance_method" title="#to_9p">#to_9p</a>
1420
+
1421
+ <em>(class Time)</em>
1422
+
1423
+ </li>
1424
+
1425
+
1426
+ <li nowrap>
1427
+ <a href="Time.html#from_9p-class_method" title="from_9p">from_9p</a>
1428
+
1429
+ <em>(class Time)</em>
1430
+
1431
+ </li>
1432
+
1433
+ </ul>
1434
+ </div>
1435
+ </body>
1436
+ </html>