mergeWidgetInfo.dot 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848
  1. digraph g {
  2. node [shape=box, style=filled, fillcolor=lightblue, fontname="simsun.ttc", fontsize=14];
  3. edge [fontname="simsun.ttc", fontsize=12];
  4. subgraph cluster_{
  5. label = ""
  6. 177[label = "Start "];
  7. }
  8. subgraph cluster_org_linphone_recording_RecordingsActivity{
  9. label = "org_linphone_recording_RecordingsActivity"
  10. 150[label = "behavior = click
  11. arg = null
  12. index = -1
  13. id = org.linphone.debug:id/side_menu_button
  14. text =
  15. className = android.widget.ImageView
  16. desc = 菜单
  17. packageName =
  18. "];
  19. 151[label = "behavior = click
  20. arg = null
  21. index = -1
  22. id = org.linphone.debug:id/status_led
  23. text =
  24. className = android.widget.ImageView
  25. desc =
  26. packageName =
  27. "];
  28. 152[label = "behavior = click
  29. arg = null
  30. index = -1
  31. id = org.linphone.debug:id/status_text
  32. text = 没有配置的帐户
  33. className = android.widget.TextView
  34. desc =
  35. packageName =
  36. "];
  37. 153[label = "behavior = click
  38. arg = null
  39. index = -1
  40. id = org.linphone.debug:id/voicemail_count
  41. text =
  42. className = android.widget.TextView
  43. desc =
  44. packageName =
  45. "];
  46. 154[label = "behavior = click
  47. arg = null
  48. index = -1
  49. id = org.linphone.debug:id/top_bar_title
  50. text = Recordings
  51. className = android.widget.TextView
  52. desc =
  53. packageName =
  54. "];
  55. 155[label = "behavior = click
  56. arg = null
  57. index = -1
  58. id = org.linphone.debug:id/edit
  59. text =
  60. className = android.widget.ImageView
  61. desc = 编辑菜单
  62. packageName =
  63. "];
  64. 156[label = "behavior = click
  65. arg = null
  66. index = -1
  67. id = org.linphone.debug:id/no_recordings
  68. text = No recordings
  69. className = android.widget.TextView
  70. desc =
  71. packageName =
  72. "];
  73. 157[label = "behavior = click
  74. arg = null
  75. index = -1
  76. id = android:id/statusBarBackground
  77. text =
  78. className = android.view.View
  79. desc =
  80. packageName =
  81. "];
  82. 158[label = "behavior = sendKeyEvent
  83. arg = [4]
  84. index = -1
  85. id =
  86. text =
  87. className =
  88. desc =
  89. packageName =
  90. "];
  91. }
  92. subgraph cluster_org_linphone_history_HistoryActivity{
  93. label = "org_linphone_history_HistoryActivity"
  94. 85[label = "behavior = click
  95. arg = null
  96. index = -1
  97. id = org.linphone.debug:id/side_menu_button
  98. text =
  99. className = android.widget.ImageView
  100. desc = 菜单
  101. packageName =
  102. "];
  103. 86[label = "behavior = click
  104. arg = null
  105. index = -1
  106. id = org.linphone.debug:id/status_led
  107. text =
  108. className = android.widget.ImageView
  109. desc =
  110. packageName =
  111. "];
  112. 87[label = "behavior = click
  113. arg = null
  114. index = -1
  115. id = org.linphone.debug:id/status_text
  116. text = 没有配置的帐户
  117. className = android.widget.TextView
  118. desc =
  119. packageName =
  120. "];
  121. 88[label = "behavior = click
  122. arg = null
  123. index = -1
  124. id = org.linphone.debug:id/voicemail_count
  125. text =
  126. className = android.widget.TextView
  127. desc =
  128. packageName =
  129. "];
  130. 89[label = "behavior = click
  131. arg = null
  132. index = -1
  133. id = org.linphone.debug:id/all_calls
  134. text =
  135. className = android.widget.ImageView
  136. desc = 所有联系人
  137. packageName =
  138. "];
  139. 90[label = "behavior = click
  140. arg = null
  141. index = -1
  142. id = org.linphone.debug:id/all_calls_select
  143. text =
  144. className = android.view.View
  145. desc =
  146. packageName =
  147. "];
  148. 91[label = "behavior = click
  149. arg = null
  150. index = -1
  151. id = org.linphone.debug:id/missed_calls
  152. text =
  153. className = android.widget.ImageView
  154. desc = Linphone联系人
  155. packageName =
  156. "];
  157. 92[label = "behavior = click
  158. arg = null
  159. index = -1
  160. id =
  161. text =
  162. className = android.view.View
  163. desc =
  164. packageName =
  165. "];
  166. 93[label = "behavior = click
  167. arg = null
  168. index = -1
  169. id = org.linphone.debug:id/edit
  170. text =
  171. className = android.widget.ImageView
  172. desc = 编辑菜单
  173. packageName =
  174. "];
  175. 94[label = "behavior = click
  176. arg = null
  177. index = -1
  178. id = org.linphone.debug:id/no_call_history
  179. text = 无电话记录
  180. className = android.widget.TextView
  181. desc =
  182. packageName =
  183. "];
  184. 95[label = "behavior = click
  185. arg = null
  186. index = -1
  187. id =
  188. text =
  189. className = android.widget.ImageView
  190. desc = 历史按钮
  191. packageName =
  192. "];
  193. 96[label = "behavior = click
  194. arg = null
  195. index = -1
  196. id = org.linphone.debug:id/history_select
  197. text =
  198. className = android.view.View
  199. desc =
  200. packageName =
  201. "];
  202. 97[label = "behavior = click
  203. arg = null
  204. index = -1
  205. id =
  206. text =
  207. className = android.widget.ImageView
  208. desc = 联系人按钮
  209. packageName =
  210. "];
  211. 103[label = "behavior = click
  212. arg = null
  213. index = -1
  214. id =
  215. text =
  216. className = android.widget.ImageView
  217. desc = 拨号器
  218. packageName =
  219. "];
  220. 119[label = "behavior = click
  221. arg = null
  222. index = -1
  223. id =
  224. text =
  225. className = android.widget.ImageView
  226. desc = 聊天按钮
  227. packageName =
  228. "];
  229. }
  230. subgraph cluster_org_linphone_chat_ChatActivity{
  231. label = "org_linphone_chat_ChatActivity"
  232. 106[label = "behavior = click
  233. arg = null
  234. index = -1
  235. id = org.linphone.debug:id/side_menu_button
  236. text =
  237. className = android.widget.ImageView
  238. desc = 菜单
  239. packageName =
  240. "];
  241. 107[label = "behavior = click
  242. arg = null
  243. index = -1
  244. id = org.linphone.debug:id/status_led
  245. text =
  246. className = android.widget.ImageView
  247. desc =
  248. packageName =
  249. "];
  250. 108[label = "behavior = click
  251. arg = null
  252. index = -1
  253. id = org.linphone.debug:id/status_text
  254. text = 没有配置的帐户
  255. className = android.widget.TextView
  256. desc =
  257. packageName =
  258. "];
  259. 109[label = "behavior = click
  260. arg = null
  261. index = -1
  262. id = org.linphone.debug:id/voicemail_count
  263. text =
  264. className = android.widget.TextView
  265. desc =
  266. packageName =
  267. "];
  268. 110[label = "behavior = click
  269. arg = null
  270. index = -1
  271. id = org.linphone.debug:id/new_discussion
  272. text =
  273. className = android.widget.ImageView
  274. desc = 新的对话
  275. packageName =
  276. "];
  277. 111[label = "behavior = click
  278. arg = null
  279. index = -1
  280. id =
  281. text =
  282. className = android.view.View
  283. desc =
  284. packageName =
  285. "];
  286. 112[label = "behavior = click
  287. arg = null
  288. index = -1
  289. id = org.linphone.debug:id/edit
  290. text =
  291. className = android.widget.ImageView
  292. desc = 编辑菜单
  293. packageName =
  294. "];
  295. 113[label = "behavior = click
  296. arg = null
  297. index = -1
  298. id = org.linphone.debug:id/chatList
  299. text =
  300. className = androidx.recyclerview.widget.RecyclerView
  301. desc =
  302. packageName =
  303. "];
  304. 114[label = "behavior = click
  305. arg = null
  306. index = -1
  307. id = org.linphone.debug:id/noChatHistory
  308. text = 无对话
  309. className = android.widget.TextView
  310. desc =
  311. packageName =
  312. "];
  313. 115[label = "behavior = click
  314. arg = null
  315. index = -1
  316. id =
  317. text =
  318. className = android.widget.ImageView
  319. desc = 历史按钮
  320. packageName =
  321. "];
  322. 175[label = "behavior = click
  323. arg = null
  324. index = -1
  325. id =
  326. text =
  327. className = android.widget.ImageView
  328. desc = 联系人按钮
  329. packageName =
  330. "];
  331. 176[label = "behavior = click
  332. arg = null
  333. index = -1
  334. id = org.linphone.debug:id/item_name
  335. text = 助手
  336. className = android.widget.TextView
  337. desc =
  338. packageName =
  339. "];
  340. }
  341. subgraph cluster_org_linphone_activities_AboutActivity{
  342. label = "org_linphone_activities_AboutActivity"
  343. 160[label = "behavior = click
  344. arg = null
  345. index = -1
  346. id = org.linphone.debug:id/side_menu_button
  347. text =
  348. className = android.widget.ImageView
  349. desc = 菜单
  350. packageName =
  351. "];
  352. 161[label = "behavior = click
  353. arg = null
  354. index = -1
  355. id = org.linphone.debug:id/status_led
  356. text =
  357. className = android.widget.ImageView
  358. desc =
  359. packageName =
  360. "];
  361. 162[label = "behavior = click
  362. arg = null
  363. index = -1
  364. id = org.linphone.debug:id/status_text
  365. text = 没有配置的帐户
  366. className = android.widget.TextView
  367. desc =
  368. packageName =
  369. "];
  370. 163[label = "behavior = click
  371. arg = null
  372. index = -1
  373. id = org.linphone.debug:id/voicemail_count
  374. text =
  375. className = android.widget.TextView
  376. desc =
  377. packageName =
  378. "];
  379. 164[label = "behavior = click
  380. arg = null
  381. index = -1
  382. id = org.linphone.debug:id/cancel
  383. text =
  384. className = android.widget.ImageView
  385. desc = 返回拨号器
  386. packageName =
  387. "];
  388. 165[label = "behavior = click
  389. arg = null
  390. index = -1
  391. id = org.linphone.debug:id/top_bar_title
  392. text = 关于
  393. className = android.widget.TextView
  394. desc =
  395. packageName =
  396. "];
  397. 166[label = "behavior = click
  398. arg = null
  399. index = -1
  400. id =
  401. text =
  402. className = android.view.View
  403. desc =
  404. packageName =
  405. "];
  406. 167[label = "behavior = click
  407. arg = null
  408. index = -1
  409. id =
  410. text =
  411. className = android.widget.ImageView
  412. desc =
  413. packageName =
  414. "];
  415. 168[label = "behavior = click
  416. arg = null
  417. index = -1
  418. id =
  419. text = the libre SIP client
  420. className = android.widget.TextView
  421. desc =
  422. packageName =
  423. "];
  424. 169[label = "behavior = click
  425. arg = null
  426. index = -1
  427. id = org.linphone.debug:id/about_android_version
  428. text = Linphone Android4.3-alpha.36+3e94feee (debug)
  429. className = android.widget.TextView
  430. desc =
  431. packageName =
  432. "];
  433. 170[label = "behavior = click
  434. arg = null
  435. index = -1
  436. id = org.linphone.debug:id/about_liblinphone_sdk_version
  437. text = Linphone SDK 4.4.0-alpha.114+08e2ed6 (remotes/origin/HEAD)
  438. className = android.widget.TextView
  439. desc =
  440. packageName =
  441. "];
  442. 171[label = "behavior = click
  443. arg = null
  444. index = -1
  445. id = org.linphone.debug:id/about_link
  446. text = https://linphone.org
  447. className = android.widget.TextView
  448. desc =
  449. packageName =
  450. "];
  451. }
  452. subgraph cluster_org_linphone_assistant_MenuAssistantActivity{
  453. label = "org_linphone_assistant_MenuAssistantActivity"
  454. 0[label = "behavior = click
  455. arg = null
  456. index = -1
  457. id =
  458. text = 助手
  459. className = android.widget.TextView
  460. desc =
  461. packageName =
  462. "];
  463. 1[label = "behavior = click
  464. arg = null
  465. index = -1
  466. id =
  467. text = 欢迎
  468. className = android.widget.TextView
  469. desc =
  470. packageName =
  471. "];
  472. 2[label = "behavior = click
  473. arg = null
  474. index = -1
  475. id =
  476. text = 助手将会帮助您配置和使用您的SIP帐户
  477. className = android.widget.TextView
  478. desc =
  479. packageName =
  480. "];
  481. 3[label = "behavior = click
  482. arg = null
  483. index = -1
  484. id = org.linphone.debug:id/account_creation
  485. text = 创建帐户
  486. className = android.widget.TextView
  487. desc = 创建帐户
  488. packageName =
  489. "];
  490. 12[label = "behavior = click
  491. arg = null
  492. index = -1
  493. id = org.linphone.debug:id/account_connection
  494. text = 使用Linphone帐户
  495. className = android.widget.TextView
  496. desc = 使用Linphone帐户
  497. packageName =
  498. "];
  499. 21[label = "behavior = click
  500. arg = null
  501. index = -1
  502. id = org.linphone.debug:id/generic_connection
  503. text = 使用SIP 帐户
  504. className = android.widget.TextView
  505. desc = 使用SIP 帐户
  506. packageName =
  507. "];
  508. 36[label = "behavior = click
  509. arg = null
  510. index = -1
  511. id = org.linphone.debug:id/remote_configuration
  512. text = 获取远程配置
  513. className = android.widget.TextView
  514. desc = 获取远程配置
  515. packageName =
  516. "];
  517. 50[label = "behavior = click
  518. arg = null
  519. index = -1
  520. id = android:id/statusBarBackground
  521. text =
  522. className = android.view.View
  523. desc =
  524. packageName =
  525. "];
  526. 51[label = "behavior = sendKeyEvent
  527. arg = [4]
  528. index = -1
  529. id =
  530. text =
  531. className =
  532. desc =
  533. packageName =
  534. "];
  535. 52[label = "behavior = click
  536. arg = null
  537. index = -1
  538. id = org.linphone.debug:id/back
  539. text =
  540. className = android.widget.ImageView
  541. desc = 返回
  542. packageName =
  543. "];
  544. }
  545. subgraph cluster_org_linphone_settings_SettingsActivity{
  546. label = "org_linphone_settings_SettingsActivity"
  547. 121[label = "behavior = click
  548. arg = null
  549. index = -1
  550. id = org.linphone.debug:id/side_menu_button
  551. text =
  552. className = android.widget.ImageView
  553. desc = 菜单
  554. packageName =
  555. "];
  556. 122[label = "behavior = click
  557. arg = null
  558. index = -1
  559. id = org.linphone.debug:id/status_led
  560. text =
  561. className = android.widget.ImageView
  562. desc =
  563. packageName =
  564. "];
  565. 123[label = "behavior = click
  566. arg = null
  567. index = -1
  568. id = org.linphone.debug:id/status_text
  569. text = 没有配置的帐户
  570. className = android.widget.TextView
  571. desc =
  572. packageName =
  573. "];
  574. 124[label = "behavior = click
  575. arg = null
  576. index = -1
  577. id = org.linphone.debug:id/voicemail_count
  578. text =
  579. className = android.widget.TextView
  580. desc =
  581. packageName =
  582. "];
  583. 125[label = "behavior = click
  584. arg = null
  585. index = -1
  586. id = org.linphone.debug:id/cancel
  587. text =
  588. className = android.widget.ImageView
  589. desc = 返回拨号器
  590. packageName =
  591. "];
  592. 126[label = "behavior = click
  593. arg = null
  594. index = -1
  595. id = org.linphone.debug:id/top_bar_title
  596. text = 设置
  597. className = android.widget.TextView
  598. desc =
  599. packageName =
  600. "];
  601. 127[label = "behavior = click
  602. arg = null
  603. index = -1
  604. id =
  605. text =
  606. className = android.view.View
  607. desc =
  608. packageName =
  609. "];
  610. 128[label = "behavior = click
  611. arg = null
  612. index = -1
  613. id =
  614. text = 偏好
  615. className = android.widget.TextView
  616. desc =
  617. packageName =
  618. "];
  619. 129[label = "behavior = click
  620. arg = null
  621. index = -1
  622. id = org.linphone.debug:id/setting_title
  623. text = 音频
  624. className = android.widget.TextView
  625. desc =
  626. packageName =
  627. "];
  628. 130[label = "behavior = click
  629. arg = null
  630. index = -1
  631. id = org.linphone.debug:id/setting_title
  632. text = 回声消除
  633. className = android.widget.TextView
  634. desc =
  635. packageName =
  636. "];
  637. 131[label = "behavior = click
  638. arg = null
  639. index = -1
  640. id = org.linphone.debug:id/setting_subtitle
  641. text = 删除其他端听到的回声
  642. className = android.widget.TextView
  643. desc =
  644. packageName =
  645. "];
  646. 132[label = "behavior = click
  647. arg = null
  648. index = -1
  649. id = org.linphone.debug:id/setting_switch
  650. text = 开启
  651. className = android.widget.Switch
  652. desc =
  653. packageName =
  654. "];
  655. 133[label = "behavior = click
  656. arg = null
  657. index = -1
  658. id = org.linphone.debug:id/setting_title
  659. text = 回声消除器校准
  660. className = android.widget.TextView
  661. desc =
  662. packageName =
  663. "];
  664. 134[label = "behavior = click
  665. arg = null
  666. index = -1
  667. id = org.linphone.debug:id/setting_subtitle
  668. text = 校准中…
  669. className = android.widget.TextView
  670. desc =
  671. packageName =
  672. "];
  673. 135[label = "behavior = click
  674. arg = null
  675. index = -1
  676. id = org.linphone.debug:id/setting_title
  677. text = 回声测试
  678. className = android.widget.TextView
  679. desc =
  680. packageName =
  681. "];
  682. 136[label = "behavior = click
  683. arg = null
  684. index = -1
  685. id = org.linphone.debug:id/setting_subtitle
  686. text = Is running
  687. className = android.widget.TextView
  688. desc =
  689. packageName =
  690. "];
  691. 137[label = "behavior = click
  692. arg = null
  693. index = -1
  694. id = org.linphone.debug:id/setting_title
  695. text = 自适应速率控制
  696. className = android.widget.TextView
  697. desc =
  698. packageName =
  699. "];
  700. 138[label = "behavior = click
  701. arg = null
  702. index = -1
  703. id = org.linphone.debug:id/setting_switch
  704. text = 关闭
  705. className = android.widget.Switch
  706. desc =
  707. packageName =
  708. "];
  709. 139[label = "behavior = click
  710. arg = null
  711. index = -1
  712. id = org.linphone.debug:id/setting_title
  713. text = 编解码的比特率限制
  714. className = android.widget.TextView
  715. desc =
  716. packageName =
  717. "];
  718. 140[label = "behavior = click
  719. arg = null
  720. index = -1
  721. id = android:id/text1
  722. text = 36 kbits/s
  723. className = android.widget.TextView
  724. desc =
  725. packageName =
  726. "];
  727. 141[label = "behavior = click
  728. arg = null
  729. index = -1
  730. id = android:id/text1
  731. text = 10 kbits/s
  732. className = android.widget.CheckedTextView
  733. desc =
  734. packageName =
  735. "];
  736. 142[label = "behavior = click
  737. arg = null
  738. index = -1
  739. id = org.linphone.debug:id/setting_title
  740. text = Microphone gain (in db)
  741. className = android.widget.TextView
  742. desc =
  743. packageName =
  744. "];
  745. 143[label = "behavior = click
  746. arg = null
  747. index = -1
  748. id = org.linphone.debug:id/setting_title
  749. text = Playback gain (in db)
  750. className = android.widget.TextView
  751. desc =
  752. packageName =
  753. "];
  754. 144[label = "behavior = click
  755. arg = null
  756. index = -1
  757. id =
  758. text = 编解码器
  759. className = android.widget.TextView
  760. desc =
  761. packageName =
  762. "];
  763. 145[label = "behavior = click
  764. arg = null
  765. index = -1
  766. id = org.linphone.debug:id/setting_title
  767. text = opus
  768. className = android.widget.TextView
  769. desc =
  770. packageName =
  771. "];
  772. 146[label = "behavior = click
  773. arg = null
  774. index = -1
  775. id = org.linphone.debug:id/setting_subtitle
  776. text = 48000 Hz
  777. className = android.widget.TextView
  778. desc =
  779. packageName =
  780. "];
  781. 147[label = "behavior = click
  782. arg = null
  783. index = -1
  784. id = android:id/statusBarBackground
  785. text =
  786. className = android.view.View
  787. desc =
  788. packageName =
  789. "];
  790. 148[label = "behavior = sendKeyEvent
  791. arg = [4]
  792. index = -1
  793. id =
  794. text =
  795. className =
  796. desc =
  797. packageName =
  798. "];
  799. }
  800. subgraph cluster__BrowserActivity{
  801. label = "_BrowserActivity"
  802. 172[label = "behavior = sendKeyEvent
  803. arg = [4]
  804. index = -1
  805. id =
  806. text =
  807. className =
  808. desc =
  809. packageName =
  810. "];
  811. }
  812. subgraph cluster_org_linphone_assistant_QrCodeConfigurationAssistantActivity{
  813. label = "org_linphone_assistant_QrCodeConfigurationAssistantActivity"
  814. 43[label = "behavior = click
  815. arg = null
  816. index = -1
  817. id =
  818. text = 助手
  819. className = android.widget.TextView
  820. desc =
  821. packageName =
  822. "];
  823. 44[label = "behavior = click
  824. arg = null
  825. index = -1
  826. id = org.linphone.debug:id/qr_code_capture_texture
  827. text =
  828. className = android.view.View
  829. desc =
  830. packageName =
  831. "];
  832. 45[label = "behavior = click
  833. arg = null
  834. index = -1
  835. id = org.linphone.debug:id/qr_code_capture_change_camera
  836. text =
  837. className = android.widget.ImageView
  838. desc =
  839. packageName =
  840. "];
  841. 46[label = "behavior = click
  842. arg = null
  843. index = -1
  844. id = android:id/statusBarBackground
  845. text =
  846. className = android.view.View
  847. desc =
  848. packageName =
  849. "];
  850. 47[label = "behavior = sendKeyEvent
  851. arg = [4]
  852. index = -1
  853. id =
  854. text =
  855. className =
  856. desc =
  857. packageName =
  858. "];
  859. }
  860. subgraph cluster_org_linphone_assistant_AccountConnectionAssistantActivity{
  861. label = "org_linphone_assistant_AccountConnectionAssistantActivity"
  862. 13[label = "behavior = click
  863. arg = null
  864. index = -1
  865. id =
  866. text = 助手
  867. className = android.widget.TextView
  868. desc =
  869. packageName =
  870. "];
  871. 14[label = "behavior = click
  872. arg = null
  873. index = -1
  874. id =
  875. text = 使用您的Linphone帐户
  876. className = android.widget.TextView
  877. desc =
  878. packageName =
  879. "];
  880. 15[label = "behavior = click
  881. arg = null
  882. index = -1
  883. id = org.linphone.debug:id/phone_number_desc
  884. text = 请确认您所在的国家编码和电话号码。
  885. className = android.widget.TextView
  886. desc =
  887. packageName =
  888. "];
  889. 16[label = "behavior = click
  890. arg = null
  891. index = -1
  892. id = org.linphone.debug:id/phone_number_label
  893. text = 电话号码
  894. className = android.widget.TextView
  895. desc =
  896. packageName =
  897. "];
  898. 17[label = "behavior = click
  899. arg = null
  900. index = -1
  901. id = org.linphone.debug:id/info_phone_number
  902. text =
  903. className = android.widget.ImageView
  904. desc =
  905. packageName =
  906. "];
  907. 18[label = "behavior = click
  908. arg = null
  909. index = -1
  910. id = android:id/alertTitle
  911. text = 我的电话号码将用于?
  912. className = android.widget.TextView
  913. desc =
  914. packageName =
  915. "];
  916. 19[label = "behavior = click
  917. arg = null
  918. index = -1
  919. id = android:id/message
  920. text = 如果将您的帐户关联您的电话号码,您的朋友们可以更容易的找到你。您在通讯录里可以查看谁在使用Linphone,他们也同样可以通过Linphone联系您。
  921. 您的电话号码只能关联一个Linphone帐户。如果您已经把您的号码关联了其他账户,但是你更想使用这个。只需关联您现在的帐户,你的号码就会自动转移到这个账户。
  922. className = android.widget.TextView
  923. desc =
  924. packageName =
  925. "];
  926. 20[label = "behavior = sendKeyEvent
  927. arg = [4]
  928. index = -1
  929. id =
  930. text =
  931. className =
  932. desc =
  933. packageName =
  934. "];
  935. }
  936. subgraph cluster_org_linphone_assistant_GenericConnectionAssistantActivity{
  937. label = "org_linphone_assistant_GenericConnectionAssistantActivity"
  938. 22[label = "behavior = click
  939. arg = null
  940. index = -1
  941. id =
  942. text = 助手
  943. className = android.widget.TextView
  944. desc =
  945. packageName =
  946. "];
  947. 23[label = "behavior = click
  948. arg = null
  949. index = -1
  950. id =
  951. text = 使用SIP 帐户
  952. className = android.widget.TextView
  953. desc =
  954. packageName =
  955. "];
  956. 24[label = "behavior = click
  957. arg = null
  958. index = -1
  959. id =
  960. text = 请输入您 SIP 域名的帐户用户名和密码
  961. className = android.widget.TextView
  962. desc =
  963. packageName =
  964. "];
  965. 25[label = "behavior = click
  966. arg = null
  967. index = -1
  968. id =
  969. text = 用户名
  970. className = android.widget.TextView
  971. desc =
  972. packageName =
  973. "];
  974. 26[label = "behavior = click
  975. arg = null
  976. index = -1
  977. id =
  978. text = 密码
  979. className = android.widget.TextView
  980. desc =
  981. packageName =
  982. "];
  983. 27[label = "behavior = click
  984. arg = null
  985. index = -1
  986. id =
  987. text = 域名
  988. className = android.widget.TextView
  989. desc =
  990. packageName =
  991. "];
  992. 28[label = "behavior = click
  993. arg = null
  994. index = -1
  995. id =
  996. text = 显示名(可选)
  997. className = android.widget.TextView
  998. desc =
  999. packageName =
  1000. "];
  1001. 29[label = "behavior = click
  1002. arg = null
  1003. index = -1
  1004. id =
  1005. text = 传输
  1006. className = android.widget.TextView
  1007. desc =
  1008. packageName =
  1009. "];
  1010. 30[label = "behavior = click
  1011. arg = null
  1012. index = -1
  1013. id = org.linphone.debug:id/transport_udp
  1014. text = UDP
  1015. className = android.widget.RadioButton
  1016. desc =
  1017. packageName =
  1018. "];
  1019. 31[label = "behavior = click
  1020. arg = null
  1021. index = -1
  1022. id = org.linphone.debug:id/transport_tcp
  1023. text = TCP
  1024. className = android.widget.RadioButton
  1025. desc =
  1026. packageName =
  1027. "];
  1028. 32[label = "behavior = click
  1029. arg = null
  1030. index = -1
  1031. id = org.linphone.debug:id/transport_tls
  1032. text = TLS
  1033. className = android.widget.RadioButton
  1034. desc =
  1035. packageName =
  1036. "];
  1037. 33[label = "behavior = click
  1038. arg = null
  1039. index = -1
  1040. id = org.linphone.debug:id/assistant_login
  1041. text = 登录
  1042. className = android.widget.TextView
  1043. desc =
  1044. packageName =
  1045. "];
  1046. 34[label = "behavior = click
  1047. arg = null
  1048. index = -1
  1049. id = android:id/statusBarBackground
  1050. text =
  1051. className = android.view.View
  1052. desc =
  1053. packageName =
  1054. "];
  1055. 35[label = "behavior = sendKeyEvent
  1056. arg = [4]
  1057. index = -1
  1058. id =
  1059. text =
  1060. className =
  1061. desc =
  1062. packageName =
  1063. "];
  1064. }
  1065. subgraph cluster_org_linphone_contacts_ContactsActivity{
  1066. label = "org_linphone_contacts_ContactsActivity"
  1067. 71[label = "behavior = click
  1068. arg = null
  1069. index = -1
  1070. id = org.linphone.debug:id/side_menu_button
  1071. text =
  1072. className = android.widget.ImageView
  1073. desc = 菜单
  1074. packageName =
  1075. "];
  1076. 72[label = "behavior = click
  1077. arg = null
  1078. index = -1
  1079. id = org.linphone.debug:id/status_led
  1080. text =
  1081. className = android.widget.ImageView
  1082. desc =
  1083. packageName =
  1084. "];
  1085. 73[label = "behavior = click
  1086. arg = null
  1087. index = -1
  1088. id = org.linphone.debug:id/status_text
  1089. text = 没有配置的帐户
  1090. className = android.widget.TextView
  1091. desc =
  1092. packageName =
  1093. "];
  1094. 74[label = "behavior = click
  1095. arg = null
  1096. index = -1
  1097. id = org.linphone.debug:id/voicemail_count
  1098. text =
  1099. className = android.widget.TextView
  1100. desc =
  1101. packageName =
  1102. "];
  1103. 75[label = "behavior = click
  1104. arg = null
  1105. index = -1
  1106. id = org.linphone.debug:id/all_contacts
  1107. text =
  1108. className = android.widget.ImageView
  1109. desc = 所有联系人
  1110. packageName =
  1111. "];
  1112. 76[label = "behavior = click
  1113. arg = null
  1114. index = -1
  1115. id = org.linphone.debug:id/all_contacts_select
  1116. text =
  1117. className = android.view.View
  1118. desc =
  1119. packageName =
  1120. "];
  1121. 77[label = "behavior = click
  1122. arg = null
  1123. index = -1
  1124. id = org.linphone.debug:id/linphone_contacts
  1125. text =
  1126. className = android.widget.ImageView
  1127. desc = Linphone联系人
  1128. packageName =
  1129. "];
  1130. 78[label = "behavior = click
  1131. arg = null
  1132. index = -1
  1133. id =
  1134. text =
  1135. className = android.view.View
  1136. desc =
  1137. packageName =
  1138. "];
  1139. 79[label = "behavior = click
  1140. arg = null
  1141. index = -1
  1142. id = org.linphone.debug:id/newContact
  1143. text =
  1144. className = android.widget.ImageView
  1145. desc = 新的联系人
  1146. packageName =
  1147. "];
  1148. 80[label = "behavior = click
  1149. arg = null
  1150. index = -1
  1151. id = org.linphone.debug:id/edit
  1152. text =
  1153. className = android.widget.ImageView
  1154. desc = 编辑菜单
  1155. packageName =
  1156. "];
  1157. 81[label = "behavior = click
  1158. arg = null
  1159. index = -1
  1160. id = android:id/search_mag_icon
  1161. text =
  1162. className = android.widget.ImageView
  1163. desc =
  1164. packageName =
  1165. "];
  1166. 82[label = "behavior = click
  1167. arg = null
  1168. index = -1
  1169. id = org.linphone.debug:id/contactsList
  1170. text =
  1171. className = androidx.recyclerview.widget.RecyclerView
  1172. desc =
  1173. packageName =
  1174. "];
  1175. 83[label = "behavior = click
  1176. arg = null
  1177. index = -1
  1178. id = org.linphone.debug:id/noContact
  1179. text = 无联系人
  1180. className = android.widget.TextView
  1181. desc =
  1182. packageName =
  1183. "];
  1184. 84[label = "behavior = click
  1185. arg = null
  1186. index = -1
  1187. id =
  1188. text =
  1189. className = android.widget.ImageView
  1190. desc = 历史按钮
  1191. packageName =
  1192. "];
  1193. 98[label = "behavior = click
  1194. arg = null
  1195. index = -1
  1196. id =
  1197. text =
  1198. className = android.widget.ImageView
  1199. desc = 联系人按钮
  1200. packageName =
  1201. "];
  1202. 99[label = "behavior = click
  1203. arg = null
  1204. index = -1
  1205. id = org.linphone.debug:id/contacts_select
  1206. text =
  1207. className = android.view.View
  1208. desc =
  1209. packageName =
  1210. "];
  1211. 100[label = "behavior = click
  1212. arg = null
  1213. index = -1
  1214. id =
  1215. text =
  1216. className = android.widget.ImageView
  1217. desc = 拨号器
  1218. packageName =
  1219. "];
  1220. 105[label = "behavior = click
  1221. arg = null
  1222. index = -1
  1223. id =
  1224. text =
  1225. className = android.widget.ImageView
  1226. desc = 聊天按钮
  1227. packageName =
  1228. "];
  1229. }
  1230. subgraph cluster_org_linphone_assistant_RemoteConfigurationAssistantActivity{
  1231. label = "org_linphone_assistant_RemoteConfigurationAssistantActivity"
  1232. 37[label = "behavior = click
  1233. arg = null
  1234. index = -1
  1235. id =
  1236. text = 助手
  1237. className = android.widget.TextView
  1238. desc =
  1239. packageName =
  1240. "];
  1241. 38[label = "behavior = click
  1242. arg = null
  1243. index = -1
  1244. id =
  1245. text = 获取远程配置
  1246. className = android.widget.TextView
  1247. desc =
  1248. packageName =
  1249. "];
  1250. 39[label = "behavior = click
  1251. arg = null
  1252. index = -1
  1253. id =
  1254. text = 请输入您的配置文件 URL地址
  1255. className = android.widget.TextView
  1256. desc =
  1257. packageName =
  1258. "];
  1259. 40[label = "behavior = click
  1260. arg = null
  1261. index = -1
  1262. id =
  1263. text = URL
  1264. className = android.widget.TextView
  1265. desc =
  1266. packageName =
  1267. "];
  1268. 41[label = "behavior = click
  1269. arg = null
  1270. index = -1
  1271. id = org.linphone.debug:id/fetch_and_apply_remote_configuration
  1272. text = 获取并应用
  1273. className = android.widget.TextView
  1274. desc =
  1275. packageName =
  1276. "];
  1277. 42[label = "behavior = click
  1278. arg = null
  1279. index = -1
  1280. id = org.linphone.debug:id/qr_code
  1281. text = QRCode
  1282. className = android.widget.TextView
  1283. desc =
  1284. packageName =
  1285. "];
  1286. 48[label = "behavior = click
  1287. arg = null
  1288. index = -1
  1289. id = android:id/statusBarBackground
  1290. text =
  1291. className = android.view.View
  1292. desc =
  1293. packageName =
  1294. "];
  1295. 49[label = "behavior = sendKeyEvent
  1296. arg = [4]
  1297. index = -1
  1298. id =
  1299. text =
  1300. className =
  1301. desc =
  1302. packageName =
  1303. "];
  1304. }
  1305. subgraph cluster_org_linphone_dialer_DialerActivity{
  1306. label = "org_linphone_dialer_DialerActivity"
  1307. 53[label = "behavior = click
  1308. arg = null
  1309. index = -1
  1310. id = org.linphone.debug:id/side_menu_button
  1311. text =
  1312. className = android.widget.ImageView
  1313. desc = 菜单
  1314. packageName =
  1315. "];
  1316. 54[label = "behavior = click
  1317. arg = null
  1318. index = -1
  1319. id = org.linphone.debug:id/status_led
  1320. text =
  1321. className = android.widget.ImageView
  1322. desc =
  1323. packageName =
  1324. "];
  1325. 55[label = "behavior = click
  1326. arg = null
  1327. index = -1
  1328. id = org.linphone.debug:id/status_text
  1329. text = 没有配置的帐户
  1330. className = android.widget.TextView
  1331. desc =
  1332. packageName =
  1333. "];
  1334. 56[label = "behavior = click
  1335. arg = null
  1336. index = -1
  1337. id = org.linphone.debug:id/voicemail_count
  1338. text =
  1339. className = android.widget.TextView
  1340. desc =
  1341. packageName =
  1342. "];
  1343. 57[label = "behavior = click
  1344. arg = null
  1345. index = -1
  1346. id = org.linphone.debug:id/erase
  1347. text =
  1348. className = android.widget.ImageView
  1349. desc = Backspace
  1350. packageName =
  1351. "];
  1352. 58[label = "behavior = click
  1353. arg = null
  1354. index = -1
  1355. id = org.linphone.debug:id/Digit1
  1356. text = 1
  1357. className = android.widget.Button
  1358. desc =
  1359. packageName =
  1360. "];
  1361. 59[label = "behavior = click
  1362. arg = null
  1363. index = -1
  1364. id = org.linphone.debug:id/Digit2
  1365. text = 2
  1366. className = android.widget.Button
  1367. desc =
  1368. packageName =
  1369. "];
  1370. 60[label = "behavior = click
  1371. arg = null
  1372. index = -1
  1373. id = org.linphone.debug:id/Digit3
  1374. text = 3
  1375. className = android.widget.Button
  1376. desc =
  1377. packageName =
  1378. "];
  1379. 61[label = "behavior = click
  1380. arg = null
  1381. index = -1
  1382. id = org.linphone.debug:id/Digit4
  1383. text = 4
  1384. className = android.widget.Button
  1385. desc =
  1386. packageName =
  1387. "];
  1388. 62[label = "behavior = click
  1389. arg = null
  1390. index = -1
  1391. id = org.linphone.debug:id/Digit5
  1392. text = 5
  1393. className = android.widget.Button
  1394. desc =
  1395. packageName =
  1396. "];
  1397. 63[label = "behavior = click
  1398. arg = null
  1399. index = -1
  1400. id = org.linphone.debug:id/Digit6
  1401. text = 6
  1402. className = android.widget.Button
  1403. desc =
  1404. packageName =
  1405. "];
  1406. 64[label = "behavior = click
  1407. arg = null
  1408. index = -1
  1409. id = org.linphone.debug:id/Digit7
  1410. text = 7
  1411. className = android.widget.Button
  1412. desc =
  1413. packageName =
  1414. "];
  1415. 65[label = "behavior = click
  1416. arg = null
  1417. index = -1
  1418. id = org.linphone.debug:id/Digit8
  1419. text = 8
  1420. className = android.widget.Button
  1421. desc =
  1422. packageName =
  1423. "];
  1424. 66[label = "behavior = click
  1425. arg = null
  1426. index = -1
  1427. id = org.linphone.debug:id/Digit9
  1428. text = 9
  1429. className = android.widget.Button
  1430. desc =
  1431. packageName =
  1432. "];
  1433. 67[label = "behavior = click
  1434. arg = null
  1435. index = -1
  1436. id = org.linphone.debug:id/DigitStar
  1437. text = *
  1438. className = android.widget.Button
  1439. desc =
  1440. packageName =
  1441. "];
  1442. 68[label = "behavior = click
  1443. arg = null
  1444. index = -1
  1445. id = org.linphone.debug:id/Digit00
  1446. text = 0+
  1447. className = android.widget.Button
  1448. desc =
  1449. packageName =
  1450. "];
  1451. 69[label = "behavior = click
  1452. arg = null
  1453. index = -1
  1454. id = org.linphone.debug:id/DigitHash
  1455. text = #
  1456. className = android.widget.Button
  1457. desc =
  1458. packageName =
  1459. "];
  1460. 70[label = "behavior = click
  1461. arg = null
  1462. index = -1
  1463. id = org.linphone.debug:id/add_contact
  1464. text =
  1465. className = android.widget.ImageView
  1466. desc = 添加联系人
  1467. packageName =
  1468. "];
  1469. 101[label = "behavior = click
  1470. arg = null
  1471. index = -1
  1472. id = org.linphone.debug:id/start_call
  1473. text =
  1474. className = android.widget.ImageView
  1475. desc = 聊天
  1476. packageName =
  1477. "];
  1478. 102[label = "behavior = click
  1479. arg = null
  1480. index = -1
  1481. id =
  1482. text =
  1483. className = android.widget.ImageView
  1484. desc = 历史按钮
  1485. packageName =
  1486. "];
  1487. 104[label = "behavior = click
  1488. arg = null
  1489. index = -1
  1490. id =
  1491. text =
  1492. className = android.widget.ImageView
  1493. desc = 联系人按钮
  1494. packageName =
  1495. "];
  1496. 116[label = "behavior = click
  1497. arg = null
  1498. index = -1
  1499. id =
  1500. text =
  1501. className = android.widget.ImageView
  1502. desc = 拨号器
  1503. packageName =
  1504. "];
  1505. 117[label = "behavior = click
  1506. arg = null
  1507. index = -1
  1508. id = org.linphone.debug:id/dialer_select
  1509. text =
  1510. className = android.view.View
  1511. desc =
  1512. packageName =
  1513. "];
  1514. 118[label = "behavior = click
  1515. arg = null
  1516. index = -1
  1517. id =
  1518. text =
  1519. className = android.widget.ImageView
  1520. desc = 聊天按钮
  1521. packageName =
  1522. "];
  1523. 120[label = "behavior = click
  1524. arg = null
  1525. index = -1
  1526. id = org.linphone.debug:id/item_name
  1527. text = 设置
  1528. className = android.widget.TextView
  1529. desc =
  1530. packageName =
  1531. "];
  1532. 149[label = "behavior = click
  1533. arg = null
  1534. index = -1
  1535. id = org.linphone.debug:id/item_name
  1536. text = Recordings
  1537. className = android.widget.TextView
  1538. desc =
  1539. packageName =
  1540. "];
  1541. 159[label = "behavior = click
  1542. arg = null
  1543. index = -1
  1544. id = org.linphone.debug:id/item_name
  1545. text = 关于
  1546. className = android.widget.TextView
  1547. desc =
  1548. packageName =
  1549. "];
  1550. 173[label = "behavior = click
  1551. arg = null
  1552. index = -1
  1553. id = android:id/statusBarBackground
  1554. text =
  1555. className = android.view.View
  1556. desc =
  1557. packageName =
  1558. "];
  1559. 174[label = "behavior = sendKeyEvent
  1560. arg = [4]
  1561. index = -1
  1562. id =
  1563. text =
  1564. className =
  1565. desc =
  1566. packageName =
  1567. "];
  1568. }
  1569. subgraph cluster_org_linphone_assistant_PhoneAccountCreationAssistantActivity{
  1570. label = "org_linphone_assistant_PhoneAccountCreationAssistantActivity"
  1571. 4[label = "behavior = click
  1572. arg = null
  1573. index = -1
  1574. id =
  1575. text = 助手
  1576. className = android.widget.TextView
  1577. desc =
  1578. packageName =
  1579. "];
  1580. 5[label = "behavior = click
  1581. arg = null
  1582. index = -1
  1583. id =
  1584. text = 创建帐户
  1585. className = android.widget.TextView
  1586. desc =
  1587. packageName =
  1588. "];
  1589. 6[label = "behavior = click
  1590. arg = null
  1591. index = -1
  1592. id =
  1593. text = 请确认您所在的国家编码和电话号码。
  1594. className = android.widget.TextView
  1595. desc =
  1596. packageName =
  1597. "];
  1598. 7[label = "behavior = click
  1599. arg = null
  1600. index = -1
  1601. id = org.linphone.debug:id/phone_number_label
  1602. text = 电话号码
  1603. className = android.widget.TextView
  1604. desc =
  1605. packageName =
  1606. "];
  1607. 8[label = "behavior = click
  1608. arg = null
  1609. index = -1
  1610. id = org.linphone.debug:id/info_phone_number
  1611. text =
  1612. className = android.widget.ImageView
  1613. desc =
  1614. packageName =
  1615. "];
  1616. 9[label = "behavior = click
  1617. arg = null
  1618. index = -1
  1619. id = android:id/alertTitle
  1620. text = 我的电话号码将用于?
  1621. className = android.widget.TextView
  1622. desc =
  1623. packageName =
  1624. "];
  1625. 10[label = "behavior = click
  1626. arg = null
  1627. index = -1
  1628. id = android:id/message
  1629. text = 如果将您的帐户关联您的电话号码,您的朋友们可以更容易的找到你。您在通讯录里可以查看谁在使用Linphone,他们也同样可以通过Linphone联系您。
  1630. 您的电话号码只能关联一个Linphone帐户。如果您已经把您的号码关联了其他账户,但是你更想使用这个。只需关联您现在的帐户,你的号码就会自动转移到这个账户。
  1631. className = android.widget.TextView
  1632. desc =
  1633. packageName =
  1634. "];
  1635. 11[label = "behavior = sendKeyEvent
  1636. arg = [4]
  1637. index = -1
  1638. id =
  1639. text =
  1640. className =
  1641. desc =
  1642. packageName =
  1643. "];
  1644. }
  1645. 0->1;
  1646. 1->2;
  1647. 2->3;
  1648. 3->4;
  1649. 3->11;
  1650. 4->5;
  1651. 5->6;
  1652. 6->7;
  1653. 7->8;
  1654. 8->9;
  1655. 9->10;
  1656. 10->11;
  1657. 11->11;
  1658. 11->12;
  1659. 12->13;
  1660. 13->14;
  1661. 14->15;
  1662. 15->16;
  1663. 16->17;
  1664. 17->18;
  1665. 18->19;
  1666. 19->20;
  1667. 20->20;
  1668. 20->21;
  1669. 21->22;
  1670. 22->23;
  1671. 23->24;
  1672. 24->25;
  1673. 25->26;
  1674. 26->27;
  1675. 27->28;
  1676. 28->29;
  1677. 29->30;
  1678. 30->31;
  1679. 31->32;
  1680. 32->33;
  1681. 33->34;
  1682. 34->35;
  1683. 35->36;
  1684. 36->37;
  1685. 37->38;
  1686. 38->39;
  1687. 39->40;
  1688. 40->41;
  1689. 41->42;
  1690. 42->43;
  1691. 43->44;
  1692. 44->45;
  1693. 45->46;
  1694. 46->47;
  1695. 47->48;
  1696. 48->49;
  1697. 49->50;
  1698. 50->51;
  1699. 52->53;
  1700. 52->102;
  1701. 53->54;
  1702. 53->120;
  1703. 53->149;
  1704. 53->159;
  1705. 54->55;
  1706. 55->56;
  1707. 56->57;
  1708. 57->58;
  1709. 58->59;
  1710. 59->60;
  1711. 60->61;
  1712. 61->62;
  1713. 62->63;
  1714. 63->64;
  1715. 64->65;
  1716. 65->66;
  1717. 66->67;
  1718. 67->68;
  1719. 68->69;
  1720. 69->70;
  1721. 70->71;
  1722. 71->72;
  1723. 72->73;
  1724. 73->74;
  1725. 74->75;
  1726. 75->76;
  1727. 76->77;
  1728. 77->78;
  1729. 78->79;
  1730. 79->80;
  1731. 80->81;
  1732. 81->82;
  1733. 82->83;
  1734. 83->84;
  1735. 84->85;
  1736. 84->103;
  1737. 85->86;
  1738. 85->103;
  1739. 85->85;
  1740. 86->87;
  1741. 87->88;
  1742. 88->89;
  1743. 89->90;
  1744. 90->91;
  1745. 91->92;
  1746. 91->85;
  1747. 92->93;
  1748. 93->94;
  1749. 94->95;
  1750. 95->96;
  1751. 96->97;
  1752. 97->98;
  1753. 97->71;
  1754. 98->99;
  1755. 99->100;
  1756. 100->101;
  1757. 101->102;
  1758. 102->103;
  1759. 102->119;
  1760. 102->91;
  1761. 103->104;
  1762. 103->116;
  1763. 103->52;
  1764. 103->118;
  1765. 104->105;
  1766. 105->106;
  1767. 106->107;
  1768. 106->176;
  1769. 107->108;
  1770. 108->109;
  1771. 109->110;
  1772. 110->111;
  1773. 111->112;
  1774. 112->113;
  1775. 113->114;
  1776. 114->115;
  1777. 115->85;
  1778. 116->117;
  1779. 117->118;
  1780. 118->52;
  1781. 118->175;
  1782. 118->106;
  1783. 120->121;
  1784. 121->122;
  1785. 122->123;
  1786. 123->124;
  1787. 124->125;
  1788. 125->126;
  1789. 126->127;
  1790. 127->128;
  1791. 127->133;
  1792. 127->135;
  1793. 127->137;
  1794. 127->139;
  1795. 127->142;
  1796. 127->143;
  1797. 127->144;
  1798. 128->129;
  1799. 129->130;
  1800. 130->131;
  1801. 131->132;
  1802. 132->127;
  1803. 132->147;
  1804. 133->134;
  1805. 134->127;
  1806. 135->136;
  1807. 136->127;
  1808. 137->138;
  1809. 138->127;
  1810. 139->140;
  1811. 140->141;
  1812. 141->133;
  1813. 141->127;
  1814. 142->127;
  1815. 143->127;
  1816. 144->145;
  1817. 145->146;
  1818. 146->132;
  1819. 147->148;
  1820. 148->148;
  1821. 149->150;
  1822. 150->151;
  1823. 151->152;
  1824. 152->153;
  1825. 153->154;
  1826. 154->155;
  1827. 155->156;
  1828. 156->157;
  1829. 157->158;
  1830. 159->160;
  1831. 160->161;
  1832. 161->162;
  1833. 162->163;
  1834. 163->164;
  1835. 164->165;
  1836. 165->166;
  1837. 166->167;
  1838. 167->168;
  1839. 168->169;
  1840. 169->170;
  1841. 170->171;
  1842. 171->172;
  1843. 172->173;
  1844. 173->174;
  1845. 176->3;
  1846. 177->0;
  1847. 177->52;
  1848. }