udm-rules-vue 0.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 (438) hide show
  1. package/README.md +92 -0
  2. package/dist/EventBus.d.ts +70 -0
  3. package/dist/FileDeployPackageBuilder.d.ts +35 -0
  4. package/dist/FileSystemEventBus.d.ts +6 -0
  5. package/dist/FileUtils.d.ts +51 -0
  6. package/dist/RedoUndoManager.d.ts +15 -0
  7. package/dist/RuleFileWatcher.d.ts +14 -0
  8. package/dist/ServerRequestResponse.d.ts +29 -0
  9. package/dist/Url.d.ts +18 -0
  10. package/dist/WebviewCollection.d.ts +12 -0
  11. package/dist/ajax.d.ts +2 -0
  12. package/dist/assets/builtin/BasicObject.bom +22 -0
  13. package/dist/assets/builtin/BasicObject_zh_CN.voc +9 -0
  14. package/dist/assets/builtin/Constants.bom +9 -0
  15. package/dist/assets/builtin/Constants_zh_CN.voc +6 -0
  16. package/dist/assets/builtin/StaticMethod.bom +118 -0
  17. package/dist/assets/builtin/StaticMethod_zh_CN.voc +176 -0
  18. package/dist/assets/css/index.css +1 -0
  19. package/dist/authToken.d.ts +2 -0
  20. package/dist/bom/AttributeDialog.vue.d.ts +6 -0
  21. package/dist/bom/BomEditor.vue.d.ts +8 -0
  22. package/dist/bom/BomEditorComponent.vue.d.ts +3 -0
  23. package/dist/bom/BomWebEditor.d.ts +1 -0
  24. package/dist/bom/Category.vue.d.ts +6 -0
  25. package/dist/bom/CategoryDialog.vue.d.ts +6 -0
  26. package/dist/bom/ClassEditor.vue.d.ts +9 -0
  27. package/dist/bom/ClassMemberDialog.vue.d.ts +6 -0
  28. package/dist/bom/CustomProperty.vue.d.ts +7 -0
  29. package/dist/bom/DocumentationDialog.vue.d.ts +6 -0
  30. package/dist/bom/Domain.vue.d.ts +7 -0
  31. package/dist/bom/DomainDialog.vue.d.ts +6 -0
  32. package/dist/bom/EditTermDialog.vue.d.ts +6 -0
  33. package/dist/bom/FieldEditor.vue.d.ts +12 -0
  34. package/dist/bom/MethodEditor.vue.d.ts +11 -0
  35. package/dist/bom/MethodParameter.vue.d.ts +7 -0
  36. package/dist/bom/MethodParameterDialog.vue.d.ts +3 -0
  37. package/dist/bom/NameDialog.vue.d.ts +6 -0
  38. package/dist/bom/PureWebBomEditor.vue.d.ts +41 -0
  39. package/dist/bom/bomDeserialize.d.ts +28 -0
  40. package/dist/bom/bomRefactor.d.ts +2 -0
  41. package/dist/bom/bomSerialize.d.ts +2 -0
  42. package/dist/bom/model.d.ts +118 -0
  43. package/dist/bom/sync/SyncDialog.vue.d.ts +6 -0
  44. package/dist/bom/sync/VocabularySettleDialog.vue.d.ts +6 -0
  45. package/dist/bom/sync/bomCompare.d.ts +37 -0
  46. package/dist/bom/sync/sync.d.ts +6 -0
  47. package/dist/bom/sync/vocabularySettle.d.ts +3 -0
  48. package/dist/bom/vocabulary.d.ts +4 -0
  49. package/dist/bom/webview/BomDocument.d.ts +70 -0
  50. package/dist/bom/webview/BomEditorProvider.d.ts +39 -0
  51. package/dist/bom/webview/webviewHTMLContent.d.ts +8 -0
  52. package/dist/brl/PureWebRuleEditor.vue.d.ts +56 -0
  53. package/dist/brl/RuleDocument.d.ts +69 -0
  54. package/dist/brl/RuleEditor.vue.d.ts +17 -0
  55. package/dist/brl/RuleEditorComponent.vue.d.ts +34 -0
  56. package/dist/brl/RuleEditorProvider.d.ts +30 -0
  57. package/dist/brl/RuleUtils.d.ts +12 -0
  58. package/dist/brl/RuleWebEditor.d.ts +1 -0
  59. package/dist/brl/edit/PropertyChangeEdit.d.ts +4 -0
  60. package/dist/brl/edit/ScriptChangeEdit.d.ts +4 -0
  61. package/dist/brl/webviewHTMLContent.d.ts +8 -0
  62. package/dist/command/CompileAndPackageCommand.d.ts +3 -0
  63. package/dist/command/CompileRuleFilesCommand.d.ts +20 -0
  64. package/dist/command/CopyLibFilesCommand.d.ts +5 -0
  65. package/dist/command/DeployRuleFileCommand.d.ts +3 -0
  66. package/dist/command/OpenCompiledFileCommand.d.ts +3 -0
  67. package/dist/command/PackageRuleFilesCommand.d.ts +5 -0
  68. package/dist/command/RefactorUuidCommand.d.ts +3 -0
  69. package/dist/command/ReloadBomFilesCommand.d.ts +3 -0
  70. package/dist/command/ServerUrlConfigCommand.d.ts +4 -0
  71. package/dist/command/UpdateUuidCommand.d.ts +3 -0
  72. package/dist/compile/DecisionTableCompiler.d.ts +43 -0
  73. package/dist/compile/DecisionTableRulePreview.d.ts +5 -0
  74. package/dist/compile/ExpressionBuilder.d.ts +24 -0
  75. package/dist/compile/FileCompiler.d.ts +6 -0
  76. package/dist/compile/FlowCompiler.d.ts +18 -0
  77. package/dist/compile/PureWebCompiler.d.ts +1 -0
  78. package/dist/compile/RuleCompiler.d.ts +7 -0
  79. package/dist/compile/compileRuleScript.d.ts +5 -0
  80. package/dist/completion/ActionCompletionBuilder.d.ts +4 -0
  81. package/dist/completion/BatchConditionCompletionBuilder.d.ts +4 -0
  82. package/dist/completion/CompletionBuilder.d.ts +157 -0
  83. package/dist/completion/DatatypeAssertor.d.ts +16 -0
  84. package/dist/completion/ExpressionCompletionBuilder.d.ts +7 -0
  85. package/dist/completion/ObjectNameCompletionBuilder.d.ts +5 -0
  86. package/dist/completion/ObjectVariableAndMethodCompletion.d.ts +12 -0
  87. package/dist/completion/RuleKeyCompletionBuilder.d.ts +7 -0
  88. package/dist/completion/builder/BatchDeclareCompletionDataBuilder.d.ts +2 -0
  89. package/dist/completion/builder/CurrentItemCompletionDataBuilder.d.ts +9 -0
  90. package/dist/completion/builder/EnumCompletionItemBuilder.d.ts +7 -0
  91. package/dist/completion/builder/MethodCompletionDataBuilder.d.ts +8 -0
  92. package/dist/completion/builder/VariableCompletionItemBuilder.d.ts +9 -0
  93. package/dist/completion/configure/ArithOperatorHintBuilder.d.ts +12 -0
  94. package/dist/completion/configure/EnumHintBuilder.d.ts +8 -0
  95. package/dist/completion/configure/HintConfigBuilder.d.ts +52 -0
  96. package/dist/completion/configure/LiteralHintBuilder.d.ts +11 -0
  97. package/dist/completion/configure/MethodHintBuilder.d.ts +18 -0
  98. package/dist/completion/configure/ObjectHintBuilder.d.ts +10 -0
  99. package/dist/completion/configure/PlaceholderHintBuilder.d.ts +11 -0
  100. package/dist/completion/configure/VariableHintBuilder.d.ts +11 -0
  101. package/dist/completion/hint/HintCompletionBuilder.d.ts +11 -0
  102. package/dist/completion/hint/MethodCompletionBuilder.d.ts +9 -0
  103. package/dist/completion/hint/ObjectCompletionBuilder.d.ts +8 -0
  104. package/dist/completion/hint/ObjectNameCompletionBuilder.d.ts +7 -0
  105. package/dist/completion/hint/PlaceHolderCompletionBuilder.d.ts +5 -0
  106. package/dist/completion/hint/VariableCompletionBuilder.d.ts +7 -0
  107. package/dist/components/datatype/DatatypeSelectUtils.d.ts +13 -0
  108. package/dist/components/datatype/SelectDatatypeDialog.vue.d.ts +6 -0
  109. package/dist/components/form/TagInput.vue.d.ts +13 -0
  110. package/dist/components/menu/Item.vue.d.ts +9 -0
  111. package/dist/components/menu/Menu.vue.d.ts +8 -0
  112. package/dist/components/menu/MultiItem.vue.d.ts +12 -0
  113. package/dist/components/menu/events.d.ts +4 -0
  114. package/dist/components/menu/types.d.ts +15 -0
  115. package/dist/components/message/Dialog.vue.d.ts +36 -0
  116. package/dist/components/message/Message.vue.d.ts +8 -0
  117. package/dist/components/message/events.d.ts +19 -0
  118. package/dist/components/process/Connection.d.ts +196 -0
  119. package/dist/components/process/Menu.d.ts +12 -0
  120. package/dist/components/process/MenuItemFactory.d.ts +5 -0
  121. package/dist/components/process/MergeGroup.d.ts +12 -0
  122. package/dist/components/process/Process.d.ts +108 -0
  123. package/dist/components/process/ProcessNode.d.ts +340 -0
  124. package/dist/components/process/Tooltip.d.ts +20 -0
  125. package/dist/components/process/colors.d.ts +2 -0
  126. package/dist/components/process/events.d.ts +10 -0
  127. package/dist/components/process/types.d.ts +11 -0
  128. package/dist/components/select/Select.vue.d.ts +21 -0
  129. package/dist/components/select/SelectItem.d.ts +7 -0
  130. package/dist/components/splitter/HoizontalSplitter.vue.d.ts +34 -0
  131. package/dist/components/splitter/VerticalSplitter.vue.d.ts +43 -0
  132. package/dist/components/tab/Tab.vue.d.ts +27 -0
  133. package/dist/components/tree/TreeNode.vue.d.ts +31 -0
  134. package/dist/connect/Connect.vue.d.ts +3 -0
  135. package/dist/connect/ConnectComponent.vue.d.ts +3 -0
  136. package/dist/connect/ConnectProvider.d.ts +6 -0
  137. package/dist/connect/ConnectWebEditor.d.ts +1 -0
  138. package/dist/connect/webviewHTMLContent.d.ts +8 -0
  139. package/dist/content.d.ts +25 -0
  140. package/dist/dispose.d.ts +9 -0
  141. package/dist/dta/DecisionTableComponent.vue.d.ts +37 -0
  142. package/dist/dta/DecisionTableDeserialize.d.ts +3 -0
  143. package/dist/dta/DecisionTableEditor.vue.d.ts +20 -0
  144. package/dist/dta/DecisionTableSerialize.d.ts +2 -0
  145. package/dist/dta/DecisionTableUtils.d.ts +19 -0
  146. package/dist/dta/DecisionTableWebEditor.d.ts +1 -0
  147. package/dist/dta/DynamicEditableController.d.ts +46 -0
  148. package/dist/dta/PureWebDecisionTableEditor.vue.d.ts +59 -0
  149. package/dist/dta/component/ColumnNameBuilder.d.ts +2 -0
  150. package/dist/dta/component/DecisionTable.d.ts +136 -0
  151. package/dist/dta/component/DecisionTableCrossHeader.d.ts +11 -0
  152. package/dist/dta/component/DecisionTableHeader.d.ts +30 -0
  153. package/dist/dta/component/DecisionTableRowIndicate.d.ts +27 -0
  154. package/dist/dta/component/contentContextMenuEvent.d.ts +3 -0
  155. package/dist/dta/component/edit/ContentChangeEdit.d.ts +11 -0
  156. package/dist/dta/component/edit/DeleteHeaderEdit.d.ts +7 -0
  157. package/dist/dta/component/edit/DeleteRowEdit.d.ts +7 -0
  158. package/dist/dta/component/edit/HeaderChangeEdit.d.ts +7 -0
  159. package/dist/dta/component/edit/HeaderWidthChangeEdit.d.ts +9 -0
  160. package/dist/dta/component/edit/InsertHeaderEdit.d.ts +7 -0
  161. package/dist/dta/component/edit/InsertRowEdit.d.ts +7 -0
  162. package/dist/dta/component/edit/RowHeightChangeEdit.d.ts +9 -0
  163. package/dist/dta/component/edit/RowMoveEdit.d.ts +7 -0
  164. package/dist/dta/component/edit/StyleChangeEdit.d.ts +16 -0
  165. package/dist/dta/component/headerContextMenuEvent.d.ts +2 -0
  166. package/dist/dta/component/operationContextMenuBuilder.d.ts +4 -0
  167. package/dist/dta/component/operator/ColumnDelete.d.ts +10 -0
  168. package/dist/dta/component/operator/ColumnInsert.d.ts +14 -0
  169. package/dist/dta/component/operator/HeaderChange.d.ts +15 -0
  170. package/dist/dta/component/operator/MergeSelectedCells.d.ts +8 -0
  171. package/dist/dta/component/operator/ModelInitializer.d.ts +18 -0
  172. package/dist/dta/component/operator/RowDelete.d.ts +14 -0
  173. package/dist/dta/component/operator/RowInsert.d.ts +32 -0
  174. package/dist/dta/component/operator/SplitSelectedCell.d.ts +7 -0
  175. package/dist/dta/component/operator/SubHeaderBuilder.d.ts +18 -0
  176. package/dist/dta/component/operator/styleImpose.d.ts +3 -0
  177. package/dist/dta/dialog/CellStyleDialog.vue.d.ts +28 -0
  178. package/dist/dta/dialog/EditColumnDialog.vue.d.ts +8 -0
  179. package/dist/dta/dialog/Style.vue.d.ts +11 -0
  180. package/dist/dta/dialog/events.d.ts +2 -0
  181. package/dist/dta/model/ActionItem.d.ts +12 -0
  182. package/dist/dta/model/Cell.d.ts +59 -0
  183. package/dist/dta/model/ConditionItem.d.ts +37 -0
  184. package/dist/dta/model/DecisionTableModel.d.ts +89 -0
  185. package/dist/dta/model/Definition.d.ts +31 -0
  186. package/dist/dta/model/HeaderCell.d.ts +16 -0
  187. package/dist/dta/model/Item.d.ts +31 -0
  188. package/dist/dta/model/ItemCell.d.ts +46 -0
  189. package/dist/dta/model/Partition.d.ts +20 -0
  190. package/dist/dta/model/ResourceData.d.ts +7 -0
  191. package/dist/dta/model/Style.d.ts +19 -0
  192. package/dist/dta/model/SubHeader.d.ts +15 -0
  193. package/dist/dta/webview/DecisionTableDocument.d.ts +68 -0
  194. package/dist/dta/webview/DecisionTableEditorProvider.d.ts +31 -0
  195. package/dist/dta/webview/webviewHTMLContent.d.ts +8 -0
  196. package/dist/dtr/DecisionTreeComponent.vue.d.ts +39 -0
  197. package/dist/dtr/DecisionTreeEditor.vue.d.ts +21 -0
  198. package/dist/dtr/DecisionTreeWebEditor.d.ts +1 -0
  199. package/dist/dtr/PureWebDecisionTreeEditor.vue.d.ts +61 -0
  200. package/dist/dtr/designer/ActionInsert.d.ts +14 -0
  201. package/dist/dtr/designer/ConditionDelete.d.ts +5 -0
  202. package/dist/dtr/designer/ConditionInsert.d.ts +16 -0
  203. package/dist/dtr/designer/ConfigDialog.vue.d.ts +6 -0
  204. package/dist/dtr/designer/LabelDialog.vue.d.ts +6 -0
  205. package/dist/dtr/designer/NodeConnection.d.ts +21 -0
  206. package/dist/dtr/designer/PlaceholderEditableController.d.ts +66 -0
  207. package/dist/dtr/designer/TextBlock.d.ts +20 -0
  208. package/dist/dtr/designer/TreeDesigner.d.ts +75 -0
  209. package/dist/dtr/designer/TreeNode.d.ts +53 -0
  210. package/dist/dtr/designer/layout.d.ts +16 -0
  211. package/dist/dtr/designer/treeNodeBuilder.d.ts +18 -0
  212. package/dist/dtr/webview/DecisionTreeDocument.d.ts +68 -0
  213. package/dist/dtr/webview/DecisionTreeEditorProvider.d.ts +31 -0
  214. package/dist/dtr/webview/webviewHTMLContent.d.ts +8 -0
  215. package/dist/extension.d.ts +10 -0
  216. package/dist/flowFileLoader.d.ts +7 -0
  217. package/dist/grammar/CaretTokenDetection.d.ts +123 -0
  218. package/dist/grammar/DatatypeBuilder.d.ts +16 -0
  219. package/dist/grammar/LexerTokenConsumer.d.ts +27 -0
  220. package/dist/grammar/MethodHelper.d.ts +43 -0
  221. package/dist/grammar/ParserException.d.ts +3 -0
  222. package/dist/grammar/ParserHelper.d.ts +80 -0
  223. package/dist/grammar/SearchMethod.d.ts +15 -0
  224. package/dist/grammar/TokenAssertor.d.ts +34 -0
  225. package/dist/grammar/bom/BomLexer.d.ts +55 -0
  226. package/dist/grammar/bom/BomParser.d.ts +656 -0
  227. package/dist/grammar/bom/BomParserListener.d.ts +492 -0
  228. package/dist/grammar/bom/BomParserVisitor.d.ts +298 -0
  229. package/dist/grammar/diagnostic/ExpressionSemanticErrorBuild.d.ts +4 -0
  230. package/dist/grammar/diagnostic/GrammarDiagnostic.d.ts +20 -0
  231. package/dist/grammar/diagnostic/GrammarErrorListener.d.ts +20 -0
  232. package/dist/grammar/diagnostic/SemanticDiagnostic.d.ts +25 -0
  233. package/dist/grammar/parser/BoostRuleLexer.d.ts +21 -0
  234. package/dist/grammar/parser/BoostRuleParser.d.ts +57 -0
  235. package/dist/grammar/parser/MethodSearchForParser.d.ts +16 -0
  236. package/dist/grammar/rule/RuleLexer.d.ts +89 -0
  237. package/dist/grammar/rule/RuleParser.d.ts +537 -0
  238. package/dist/grammar/rule/RuleParserListener.d.ts +436 -0
  239. package/dist/grammar/rule/RuleParserVisitor.d.ts +264 -0
  240. package/dist/index.d.ts +30 -0
  241. package/dist/index.js +161109 -0
  242. package/dist/index.umd.js +887 -0
  243. package/dist/java-C_jlkwoG.js +238 -0
  244. package/dist/model/BO.d.ts +281 -0
  245. package/dist/model/BomFilesReader.d.ts +13 -0
  246. package/dist/model/Datatype.d.ts +84 -0
  247. package/dist/model/NavigationTree.d.ts +207 -0
  248. package/dist/model/PureWebBomFilesReader.d.ts +13 -0
  249. package/dist/model/RuleProperty.d.ts +6 -0
  250. package/dist/model/VarFilesReader.d.ts +9 -0
  251. package/dist/model/VocFilesReader.d.ts +77 -0
  252. package/dist/model/VscodeBomFilesReader.d.ts +2 -0
  253. package/dist/model/VscodeBuiltinObjectsLoader.d.ts +14 -0
  254. package/dist/model/WebBuiltinObjectsLoader.d.ts +13 -0
  255. package/dist/model/WebViewBomFilesReader.d.ts +1 -0
  256. package/dist/model/datatypeCompatibility.d.ts +2 -0
  257. package/dist/model/domainValidate.d.ts +5 -0
  258. package/dist/model/expression/ArithExpression.d.ts +17 -0
  259. package/dist/model/expression/BatchExpression.d.ts +14 -0
  260. package/dist/model/expression/CharExpression.d.ts +6 -0
  261. package/dist/model/expression/CurrentObjectExpression.d.ts +9 -0
  262. package/dist/model/expression/DateExpression.d.ts +6 -0
  263. package/dist/model/expression/DateTimeExpression.d.ts +6 -0
  264. package/dist/model/expression/EnumExpression.d.ts +8 -0
  265. package/dist/model/expression/Expression.d.ts +8 -0
  266. package/dist/model/expression/MethodExpression.d.ts +12 -0
  267. package/dist/model/expression/NumberExpression.d.ts +6 -0
  268. package/dist/model/expression/ObjectExpression.d.ts +7 -0
  269. package/dist/model/expression/PlaceholderExpression.d.ts +20 -0
  270. package/dist/model/expression/PredefineExpression.d.ts +25 -0
  271. package/dist/model/expression/RuleExpression.d.ts +18 -0
  272. package/dist/model/expression/StringExpression.d.ts +7 -0
  273. package/dist/model/expression/TimeExpression.d.ts +6 -0
  274. package/dist/model/expression/VariableExpression.d.ts +10 -0
  275. package/dist/model/expression/compile/commonMethodScriptCompile.d.ts +4 -0
  276. package/dist/model/expression/compile/compareMethodScriptCompile.d.ts +4 -0
  277. package/dist/monaco/ExpressionFinder.d.ts +32 -0
  278. package/dist/monaco/MonacoCodeEditor.d.ts +34 -0
  279. package/dist/monaco/MonacoCompletionProvider.d.ts +10 -0
  280. package/dist/monaco/MonacoDefinitionProvider.d.ts +7 -0
  281. package/dist/monaco/MonacoDiagnosticsBuilder.d.ts +21 -0
  282. package/dist/monaco/MonacoEditorOpener.d.ts +4 -0
  283. package/dist/monaco/MonacoHoverProvider.d.ts +16 -0
  284. package/dist/monaco/MonacoJavaEditor.d.ts +2 -0
  285. package/dist/monaco/MonacoLanguageConfiguration.d.ts +3 -0
  286. package/dist/monaco/MonacoLinkProvider.d.ts +7 -0
  287. package/dist/monaco/MonacoSemanticTokensProvider.d.ts +11 -0
  288. package/dist/monaco/MonacoTokenStyleRules.d.ts +3 -0
  289. package/dist/monaco/MonacoWorkerInitialize.d.ts +2 -0
  290. package/dist/monaco/ReadonlyMonacoCodeEditor.d.ts +6 -0
  291. package/dist/monaco/buildTargetPartExpressionSemantics.d.ts +31 -0
  292. package/dist/monaco/customMonaco.d.ts +2 -0
  293. package/dist/monaco/parseTargetPartRuleScript.d.ts +13 -0
  294. package/dist/projectprops/Category.vue.d.ts +8 -0
  295. package/dist/projectprops/Parameter.vue.d.ts +8 -0
  296. package/dist/projectprops/ProjectProperties.d.ts +33 -0
  297. package/dist/projectprops/ProjectPropertiesEditor.d.ts +1 -0
  298. package/dist/projectprops/ProjectPropertiesEditor.vue.d.ts +8 -0
  299. package/dist/projectprops/ProjectPropertiesEditorComponent.vue.d.ts +3 -0
  300. package/dist/projectprops/PureWebProjectPropertiesEditor.vue.d.ts +41 -0
  301. package/dist/projectprops/webview/ProjectPropertiesDocument.d.ts +67 -0
  302. package/dist/projectprops/webview/ProjectPropertiesEditorProvider.d.ts +26 -0
  303. package/dist/projectprops/webview/webviewHTMLContent.d.ts +8 -0
  304. package/dist/quicktest/Log.d.ts +49 -0
  305. package/dist/quicktest/LogDashboard.vue.d.ts +8 -0
  306. package/dist/quicktest/LogDialog.vue.d.ts +6 -0
  307. package/dist/quicktest/OutputDashboard.vue.d.ts +7 -0
  308. package/dist/quicktest/PasteJsonDialog.vue.d.ts +6 -0
  309. package/dist/quicktest/QuickTestDialog.vue.d.ts +7 -0
  310. package/dist/quicktest/TestUtils.d.ts +42 -0
  311. package/dist/quicktest/VariableForm.vue.d.ts +11 -0
  312. package/dist/refactor/DecisionTableFileRefactor.d.ts +6 -0
  313. package/dist/refactor/FileRefactor.d.ts +63 -0
  314. package/dist/refactor/FlowFileRefactor.d.ts +7 -0
  315. package/dist/refactor/RuleFileRefactor.d.ts +5 -0
  316. package/dist/rfl/FlowProcess.d.ts +56 -0
  317. package/dist/rfl/FlowProperties.d.ts +7 -0
  318. package/dist/rfl/MenuFactory.d.ts +7 -0
  319. package/dist/rfl/RuleFlowEditor.d.ts +0 -0
  320. package/dist/rfl/config/Common.d.ts +6 -0
  321. package/dist/rfl/config/Enums.d.ts +9 -0
  322. package/dist/rfl/config/TaskAction.d.ts +29 -0
  323. package/dist/rfl/config/Url.d.ts +1 -0
  324. package/dist/rfl/data/ActionNodeData.d.ts +44 -0
  325. package/dist/rfl/data/BranchNodeData.d.ts +12 -0
  326. package/dist/rfl/data/ConnectionData.d.ts +60 -0
  327. package/dist/rfl/data/ForkNodeData.d.ts +12 -0
  328. package/dist/rfl/data/JoinNodeData.d.ts +12 -0
  329. package/dist/rfl/data/NodeData.d.ts +27 -0
  330. package/dist/rfl/data/RuleFile.d.ts +67 -0
  331. package/dist/rfl/data/RuleNodeData.d.ts +174 -0
  332. package/dist/rfl/data/StartNodeData.d.ts +38 -0
  333. package/dist/rfl/data/StopNodeData.d.ts +38 -0
  334. package/dist/rfl/data/SubflowNodeData.d.ts +40 -0
  335. package/dist/rfl/data/TaskNodeData.d.ts +17 -0
  336. package/dist/rfl/definition/ConnectionDef.d.ts +31 -0
  337. package/dist/rfl/definition/JsonUtils.d.ts +67 -0
  338. package/dist/rfl/definition/ProcessDef.d.ts +191 -0
  339. package/dist/rfl/definition/ProcessNodeDef.d.ts +145 -0
  340. package/dist/rfl/definition/node/ActionTaskNodeDef.d.ts +74 -0
  341. package/dist/rfl/definition/node/BasicNodeDef.d.ts +15 -0
  342. package/dist/rfl/definition/node/BranchNodeDef.d.ts +40 -0
  343. package/dist/rfl/definition/node/ConnectionFactoryDef.d.ts +10 -0
  344. package/dist/rfl/definition/node/FlowConnectionDef.d.ts +58 -0
  345. package/dist/rfl/definition/node/FlowProcessNodeDef.d.ts +98 -0
  346. package/dist/rfl/definition/node/ForkNodeDef.d.ts +40 -0
  347. package/dist/rfl/definition/node/JoinNodeDef.d.ts +40 -0
  348. package/dist/rfl/definition/node/NodeType.d.ts +70 -0
  349. package/dist/rfl/definition/node/RuleTaskNodeDef.d.ts +62 -0
  350. package/dist/rfl/definition/node/StartTaskNodeDef.d.ts +71 -0
  351. package/dist/rfl/definition/node/StopTaskNodeDef.d.ts +71 -0
  352. package/dist/rfl/definition/node/SubflowTaskNodeDef.d.ts +55 -0
  353. package/dist/rfl/definition/node/TaskNodeDef.d.ts +31 -0
  354. package/dist/rfl/designer/Designer.vue.d.ts +38 -0
  355. package/dist/rfl/designer/DesignerComponent.vue.d.ts +59 -0
  356. package/dist/rfl/designer/ProcessUtils.d.ts +6 -0
  357. package/dist/rfl/designer/PureWebFlowEditor.vue.d.ts +81 -0
  358. package/dist/rfl/designer/editor/ConnectionEditor.vue.d.ts +8 -0
  359. package/dist/rfl/designer/editor/FlowEditor.vue.d.ts +3 -0
  360. package/dist/rfl/designer/editor/NodeEditor.vue.d.ts +3 -0
  361. package/dist/rfl/designer/editor/NodeList.vue.d.ts +9 -0
  362. package/dist/rfl/designer/editor/ProcessEditor.vue.d.ts +8 -0
  363. package/dist/rfl/en.d.ts +14 -0
  364. package/dist/rfl/events.d.ts +21 -0
  365. package/dist/rfl/node/ActionTaskNode.d.ts +22 -0
  366. package/dist/rfl/node/BasicNode.d.ts +8 -0
  367. package/dist/rfl/node/BranchNode.d.ts +48 -0
  368. package/dist/rfl/node/ConnectionFactory.d.ts +10 -0
  369. package/dist/rfl/node/FlowConnection.d.ts +45 -0
  370. package/dist/rfl/node/FlowProcessNode.d.ts +128 -0
  371. package/dist/rfl/node/ForkNode.d.ts +54 -0
  372. package/dist/rfl/node/JoinNode.d.ts +54 -0
  373. package/dist/rfl/node/NodeUtils.d.ts +15 -0
  374. package/dist/rfl/node/ProcessNodeFactory.d.ts +41 -0
  375. package/dist/rfl/node/RuleTaskNode.d.ts +76 -0
  376. package/dist/rfl/node/StartTaskNode.d.ts +74 -0
  377. package/dist/rfl/node/StopTaskNode.d.ts +84 -0
  378. package/dist/rfl/node/SubflowTaskNode.d.ts +70 -0
  379. package/dist/rfl/node/TaskNode.d.ts +42 -0
  380. package/dist/rfl/props/ActionNodeProperty.vue.d.ts +12 -0
  381. package/dist/rfl/props/BranchNodeProperty.vue.d.ts +10 -0
  382. package/dist/rfl/props/ConnectionProperty.vue.d.ts +5 -0
  383. package/dist/rfl/props/FlowFileSelectDialog.vue.d.ts +6 -0
  384. package/dist/rfl/props/ForkNodeProperty.vue.d.ts +10 -0
  385. package/dist/rfl/props/JoinNodeProperty.vue.d.ts +10 -0
  386. package/dist/rfl/props/RuleFileSelectDialog.vue.d.ts +8 -0
  387. package/dist/rfl/props/RuleNodeProperty.vue.d.ts +11 -0
  388. package/dist/rfl/props/StartNodeProperty.vue.d.ts +10 -0
  389. package/dist/rfl/props/StopNodeProperty.vue.d.ts +10 -0
  390. package/dist/rfl/props/SubflowNodeProperty.vue.d.ts +11 -0
  391. package/dist/rfl/utils/Msg.d.ts +5 -0
  392. package/dist/rfl/utils/Utils.d.ts +43 -0
  393. package/dist/rfl/utils/XMLUtils.d.ts +59 -0
  394. package/dist/rfl/webview/RuleFlowDocument.d.ts +68 -0
  395. package/dist/rfl/webview/RuleFlowEditorProvider.d.ts +33 -0
  396. package/dist/rfl/webview/webviewHTMLContent.d.ts +8 -0
  397. package/dist/rfl/zh.d.ts +14 -0
  398. package/dist/sca/webview/ScoreCardDocument.d.ts +68 -0
  399. package/dist/sca/webview/ScoreCardEditorProvider.d.ts +31 -0
  400. package/dist/sca/webview/webviewHTMLContent.d.ts +8 -0
  401. package/dist/server/TestBomFilesLoader.d.ts +13 -0
  402. package/dist/server/TestFlowFileLoader.d.ts +22 -0
  403. package/dist/server/server.d.ts +1 -0
  404. package/dist/sync/ProjectSync.vue.d.ts +6 -0
  405. package/dist/sync/ProjectSyncDocument.d.ts +67 -0
  406. package/dist/sync/ProjectSyncEditor.vue.d.ts +3 -0
  407. package/dist/sync/ProjectSyncEditorComponent.vue.d.ts +3 -0
  408. package/dist/sync/ProjectSyncEditorProvider.d.ts +28 -0
  409. package/dist/sync/ProjectSyncEntryBuilder.d.ts +65 -0
  410. package/dist/sync/ProjectSyncWebEditor.d.ts +1 -0
  411. package/dist/sync/SyncEntry.d.ts +11 -0
  412. package/dist/sync/SyncFileUitls.d.ts +16 -0
  413. package/dist/sync/tree/TreeNode.vue.d.ts +31 -0
  414. package/dist/sync/webviewHTMLContent.d.ts +8 -0
  415. package/dist/tst/PredictFormDialog.vue.d.ts +6 -0
  416. package/dist/tst/PureWebTstEditor.vue.d.ts +41 -0
  417. package/dist/tst/ResponseDialog.vue.d.ts +6 -0
  418. package/dist/tst/TstEditor.vue.d.ts +8 -0
  419. package/dist/tst/TstEditorComponent.vue.d.ts +3 -0
  420. package/dist/tst/TstUtils.d.ts +30 -0
  421. package/dist/tst/TstWebEditor.d.ts +1 -0
  422. package/dist/tst/webview/TstDocument.d.ts +67 -0
  423. package/dist/tst/webview/TstEditorProvider.d.ts +30 -0
  424. package/dist/tst/webview/webviewHTMLContent.d.ts +8 -0
  425. package/dist/utils.d.ts +104 -0
  426. package/dist/var/PureWebVariableEditor.vue.d.ts +41 -0
  427. package/dist/var/VariableEditor.vue.d.ts +8 -0
  428. package/dist/var/VariableEditorComponent.vue.d.ts +3 -0
  429. package/dist/var/VariableModel.d.ts +22 -0
  430. package/dist/var/VariableRefactorDialog.vue.d.ts +3 -0
  431. package/dist/var/VariableWebEditor.d.ts +1 -0
  432. package/dist/var/webview/VariableDocument.d.ts +67 -0
  433. package/dist/var/webview/VariableEditorProvider.d.ts +38 -0
  434. package/dist/var/webview/webviewHTMLContent.d.ts +8 -0
  435. package/dist/view&document.d.ts +9 -0
  436. package/dist/webviewFiles.d.ts +42 -0
  437. package/dist/webviewFilesOperator.d.ts +24 -0
  438. package/package.json +88 -0
@@ -0,0 +1,492 @@
1
+ import { ErrorNode, ParseTreeListener, ParserRuleContext, TerminalNode } from 'antlr4ng';
2
+ import { BomsContext, BomContext, ClassDeclareContext, StandardClassDeclareContext, StandardDomainClassDeclareContext, StandardInterfaceClassDeclareContext, StandardEumnClassDeclareContext, ClassBodyContext, ClassBodyContentContext, InnerClassContext, InnerClassDeclareContext, InterfaceClassDeclareContext, StaticClassDeclareContext, EnumClassDeclareContext, ClassDomainContext, ClassDomainItemContext, ClassDomainValueContext, FieldContext, MethodContext, ObjectConstructorContext, ThrowsPartContext, ParametersContext, ParameterDeclareContext, DomainDeclareContext, OtherDomainValueContext, GenericityDomainValueContext, LiteralDomainValueContext, StaticDomainValueContext, LimitDomainValueContext, OtherValueContext, NumberDomainValueContext, LimitValueContext, LimitTagContext, StaticValueContext, NumberContext, ScopeValueContext, ImplementsPartContext, ExtendsPartContext, PackageDeclareContext, DatatypeContext, ArrayTagContext, PackageNameContext, PropertyItemContext, PropertyNameContext, ClassNameContext, FieldNameContext, MethodNameContext } from './BomParser.js';
3
+ /**
4
+ * This interface defines a complete listener for a parse tree produced by
5
+ * `BomParser`.
6
+ */
7
+ export declare class BomParserListener implements ParseTreeListener {
8
+ /**
9
+ * Enter a parse tree produced by `BomParser.boms`.
10
+ * @param ctx the parse tree
11
+ */
12
+ enterBoms?: (ctx: BomsContext) => void;
13
+ /**
14
+ * Exit a parse tree produced by `BomParser.boms`.
15
+ * @param ctx the parse tree
16
+ */
17
+ exitBoms?: (ctx: BomsContext) => void;
18
+ /**
19
+ * Enter a parse tree produced by `BomParser.bom`.
20
+ * @param ctx the parse tree
21
+ */
22
+ enterBom?: (ctx: BomContext) => void;
23
+ /**
24
+ * Exit a parse tree produced by `BomParser.bom`.
25
+ * @param ctx the parse tree
26
+ */
27
+ exitBom?: (ctx: BomContext) => void;
28
+ /**
29
+ * Enter a parse tree produced by `BomParser.classDeclare`.
30
+ * @param ctx the parse tree
31
+ */
32
+ enterClassDeclare?: (ctx: ClassDeclareContext) => void;
33
+ /**
34
+ * Exit a parse tree produced by `BomParser.classDeclare`.
35
+ * @param ctx the parse tree
36
+ */
37
+ exitClassDeclare?: (ctx: ClassDeclareContext) => void;
38
+ /**
39
+ * Enter a parse tree produced by `BomParser.standardClassDeclare`.
40
+ * @param ctx the parse tree
41
+ */
42
+ enterStandardClassDeclare?: (ctx: StandardClassDeclareContext) => void;
43
+ /**
44
+ * Exit a parse tree produced by `BomParser.standardClassDeclare`.
45
+ * @param ctx the parse tree
46
+ */
47
+ exitStandardClassDeclare?: (ctx: StandardClassDeclareContext) => void;
48
+ /**
49
+ * Enter a parse tree produced by `BomParser.standardDomainClassDeclare`.
50
+ * @param ctx the parse tree
51
+ */
52
+ enterStandardDomainClassDeclare?: (ctx: StandardDomainClassDeclareContext) => void;
53
+ /**
54
+ * Exit a parse tree produced by `BomParser.standardDomainClassDeclare`.
55
+ * @param ctx the parse tree
56
+ */
57
+ exitStandardDomainClassDeclare?: (ctx: StandardDomainClassDeclareContext) => void;
58
+ /**
59
+ * Enter a parse tree produced by `BomParser.standardInterfaceClassDeclare`.
60
+ * @param ctx the parse tree
61
+ */
62
+ enterStandardInterfaceClassDeclare?: (ctx: StandardInterfaceClassDeclareContext) => void;
63
+ /**
64
+ * Exit a parse tree produced by `BomParser.standardInterfaceClassDeclare`.
65
+ * @param ctx the parse tree
66
+ */
67
+ exitStandardInterfaceClassDeclare?: (ctx: StandardInterfaceClassDeclareContext) => void;
68
+ /**
69
+ * Enter a parse tree produced by `BomParser.standardEumnClassDeclare`.
70
+ * @param ctx the parse tree
71
+ */
72
+ enterStandardEumnClassDeclare?: (ctx: StandardEumnClassDeclareContext) => void;
73
+ /**
74
+ * Exit a parse tree produced by `BomParser.standardEumnClassDeclare`.
75
+ * @param ctx the parse tree
76
+ */
77
+ exitStandardEumnClassDeclare?: (ctx: StandardEumnClassDeclareContext) => void;
78
+ /**
79
+ * Enter a parse tree produced by `BomParser.classBody`.
80
+ * @param ctx the parse tree
81
+ */
82
+ enterClassBody?: (ctx: ClassBodyContext) => void;
83
+ /**
84
+ * Exit a parse tree produced by `BomParser.classBody`.
85
+ * @param ctx the parse tree
86
+ */
87
+ exitClassBody?: (ctx: ClassBodyContext) => void;
88
+ /**
89
+ * Enter a parse tree produced by `BomParser.classBodyContent`.
90
+ * @param ctx the parse tree
91
+ */
92
+ enterClassBodyContent?: (ctx: ClassBodyContentContext) => void;
93
+ /**
94
+ * Exit a parse tree produced by `BomParser.classBodyContent`.
95
+ * @param ctx the parse tree
96
+ */
97
+ exitClassBodyContent?: (ctx: ClassBodyContentContext) => void;
98
+ /**
99
+ * Enter a parse tree produced by `BomParser.innerClass`.
100
+ * @param ctx the parse tree
101
+ */
102
+ enterInnerClass?: (ctx: InnerClassContext) => void;
103
+ /**
104
+ * Exit a parse tree produced by `BomParser.innerClass`.
105
+ * @param ctx the parse tree
106
+ */
107
+ exitInnerClass?: (ctx: InnerClassContext) => void;
108
+ /**
109
+ * Enter a parse tree produced by `BomParser.innerClassDeclare`.
110
+ * @param ctx the parse tree
111
+ */
112
+ enterInnerClassDeclare?: (ctx: InnerClassDeclareContext) => void;
113
+ /**
114
+ * Exit a parse tree produced by `BomParser.innerClassDeclare`.
115
+ * @param ctx the parse tree
116
+ */
117
+ exitInnerClassDeclare?: (ctx: InnerClassDeclareContext) => void;
118
+ /**
119
+ * Enter a parse tree produced by `BomParser.interfaceClassDeclare`.
120
+ * @param ctx the parse tree
121
+ */
122
+ enterInterfaceClassDeclare?: (ctx: InterfaceClassDeclareContext) => void;
123
+ /**
124
+ * Exit a parse tree produced by `BomParser.interfaceClassDeclare`.
125
+ * @param ctx the parse tree
126
+ */
127
+ exitInterfaceClassDeclare?: (ctx: InterfaceClassDeclareContext) => void;
128
+ /**
129
+ * Enter a parse tree produced by `BomParser.staticClassDeclare`.
130
+ * @param ctx the parse tree
131
+ */
132
+ enterStaticClassDeclare?: (ctx: StaticClassDeclareContext) => void;
133
+ /**
134
+ * Exit a parse tree produced by `BomParser.staticClassDeclare`.
135
+ * @param ctx the parse tree
136
+ */
137
+ exitStaticClassDeclare?: (ctx: StaticClassDeclareContext) => void;
138
+ /**
139
+ * Enter a parse tree produced by `BomParser.enumClassDeclare`.
140
+ * @param ctx the parse tree
141
+ */
142
+ enterEnumClassDeclare?: (ctx: EnumClassDeclareContext) => void;
143
+ /**
144
+ * Exit a parse tree produced by `BomParser.enumClassDeclare`.
145
+ * @param ctx the parse tree
146
+ */
147
+ exitEnumClassDeclare?: (ctx: EnumClassDeclareContext) => void;
148
+ /**
149
+ * Enter a parse tree produced by `BomParser.classDomain`.
150
+ * @param ctx the parse tree
151
+ */
152
+ enterClassDomain?: (ctx: ClassDomainContext) => void;
153
+ /**
154
+ * Exit a parse tree produced by `BomParser.classDomain`.
155
+ * @param ctx the parse tree
156
+ */
157
+ exitClassDomain?: (ctx: ClassDomainContext) => void;
158
+ /**
159
+ * Enter a parse tree produced by `BomParser.classDomainItem`.
160
+ * @param ctx the parse tree
161
+ */
162
+ enterClassDomainItem?: (ctx: ClassDomainItemContext) => void;
163
+ /**
164
+ * Exit a parse tree produced by `BomParser.classDomainItem`.
165
+ * @param ctx the parse tree
166
+ */
167
+ exitClassDomainItem?: (ctx: ClassDomainItemContext) => void;
168
+ /**
169
+ * Enter a parse tree produced by `BomParser.classDomainValue`.
170
+ * @param ctx the parse tree
171
+ */
172
+ enterClassDomainValue?: (ctx: ClassDomainValueContext) => void;
173
+ /**
174
+ * Exit a parse tree produced by `BomParser.classDomainValue`.
175
+ * @param ctx the parse tree
176
+ */
177
+ exitClassDomainValue?: (ctx: ClassDomainValueContext) => void;
178
+ /**
179
+ * Enter a parse tree produced by `BomParser.field`.
180
+ * @param ctx the parse tree
181
+ */
182
+ enterField?: (ctx: FieldContext) => void;
183
+ /**
184
+ * Exit a parse tree produced by `BomParser.field`.
185
+ * @param ctx the parse tree
186
+ */
187
+ exitField?: (ctx: FieldContext) => void;
188
+ /**
189
+ * Enter a parse tree produced by `BomParser.method`.
190
+ * @param ctx the parse tree
191
+ */
192
+ enterMethod?: (ctx: MethodContext) => void;
193
+ /**
194
+ * Exit a parse tree produced by `BomParser.method`.
195
+ * @param ctx the parse tree
196
+ */
197
+ exitMethod?: (ctx: MethodContext) => void;
198
+ /**
199
+ * Enter a parse tree produced by `BomParser.objectConstructor`.
200
+ * @param ctx the parse tree
201
+ */
202
+ enterObjectConstructor?: (ctx: ObjectConstructorContext) => void;
203
+ /**
204
+ * Exit a parse tree produced by `BomParser.objectConstructor`.
205
+ * @param ctx the parse tree
206
+ */
207
+ exitObjectConstructor?: (ctx: ObjectConstructorContext) => void;
208
+ /**
209
+ * Enter a parse tree produced by `BomParser.throwsPart`.
210
+ * @param ctx the parse tree
211
+ */
212
+ enterThrowsPart?: (ctx: ThrowsPartContext) => void;
213
+ /**
214
+ * Exit a parse tree produced by `BomParser.throwsPart`.
215
+ * @param ctx the parse tree
216
+ */
217
+ exitThrowsPart?: (ctx: ThrowsPartContext) => void;
218
+ /**
219
+ * Enter a parse tree produced by `BomParser.parameters`.
220
+ * @param ctx the parse tree
221
+ */
222
+ enterParameters?: (ctx: ParametersContext) => void;
223
+ /**
224
+ * Exit a parse tree produced by `BomParser.parameters`.
225
+ * @param ctx the parse tree
226
+ */
227
+ exitParameters?: (ctx: ParametersContext) => void;
228
+ /**
229
+ * Enter a parse tree produced by `BomParser.parameterDeclare`.
230
+ * @param ctx the parse tree
231
+ */
232
+ enterParameterDeclare?: (ctx: ParameterDeclareContext) => void;
233
+ /**
234
+ * Exit a parse tree produced by `BomParser.parameterDeclare`.
235
+ * @param ctx the parse tree
236
+ */
237
+ exitParameterDeclare?: (ctx: ParameterDeclareContext) => void;
238
+ /**
239
+ * Enter a parse tree produced by `BomParser.domainDeclare`.
240
+ * @param ctx the parse tree
241
+ */
242
+ enterDomainDeclare?: (ctx: DomainDeclareContext) => void;
243
+ /**
244
+ * Exit a parse tree produced by `BomParser.domainDeclare`.
245
+ * @param ctx the parse tree
246
+ */
247
+ exitDomainDeclare?: (ctx: DomainDeclareContext) => void;
248
+ /**
249
+ * Enter a parse tree produced by the `otherDomainValue`
250
+ * labeled alternative in `BomParser.domainValue`.
251
+ * @param ctx the parse tree
252
+ */
253
+ enterOtherDomainValue?: (ctx: OtherDomainValueContext) => void;
254
+ /**
255
+ * Exit a parse tree produced by the `otherDomainValue`
256
+ * labeled alternative in `BomParser.domainValue`.
257
+ * @param ctx the parse tree
258
+ */
259
+ exitOtherDomainValue?: (ctx: OtherDomainValueContext) => void;
260
+ /**
261
+ * Enter a parse tree produced by the `genericityDomainValue`
262
+ * labeled alternative in `BomParser.domainValue`.
263
+ * @param ctx the parse tree
264
+ */
265
+ enterGenericityDomainValue?: (ctx: GenericityDomainValueContext) => void;
266
+ /**
267
+ * Exit a parse tree produced by the `genericityDomainValue`
268
+ * labeled alternative in `BomParser.domainValue`.
269
+ * @param ctx the parse tree
270
+ */
271
+ exitGenericityDomainValue?: (ctx: GenericityDomainValueContext) => void;
272
+ /**
273
+ * Enter a parse tree produced by the `literalDomainValue`
274
+ * labeled alternative in `BomParser.domainValue`.
275
+ * @param ctx the parse tree
276
+ */
277
+ enterLiteralDomainValue?: (ctx: LiteralDomainValueContext) => void;
278
+ /**
279
+ * Exit a parse tree produced by the `literalDomainValue`
280
+ * labeled alternative in `BomParser.domainValue`.
281
+ * @param ctx the parse tree
282
+ */
283
+ exitLiteralDomainValue?: (ctx: LiteralDomainValueContext) => void;
284
+ /**
285
+ * Enter a parse tree produced by the `staticDomainValue`
286
+ * labeled alternative in `BomParser.domainValue`.
287
+ * @param ctx the parse tree
288
+ */
289
+ enterStaticDomainValue?: (ctx: StaticDomainValueContext) => void;
290
+ /**
291
+ * Exit a parse tree produced by the `staticDomainValue`
292
+ * labeled alternative in `BomParser.domainValue`.
293
+ * @param ctx the parse tree
294
+ */
295
+ exitStaticDomainValue?: (ctx: StaticDomainValueContext) => void;
296
+ /**
297
+ * Enter a parse tree produced by the `limitDomainValue`
298
+ * labeled alternative in `BomParser.domainValue`.
299
+ * @param ctx the parse tree
300
+ */
301
+ enterLimitDomainValue?: (ctx: LimitDomainValueContext) => void;
302
+ /**
303
+ * Exit a parse tree produced by the `limitDomainValue`
304
+ * labeled alternative in `BomParser.domainValue`.
305
+ * @param ctx the parse tree
306
+ */
307
+ exitLimitDomainValue?: (ctx: LimitDomainValueContext) => void;
308
+ /**
309
+ * Enter a parse tree produced by `BomParser.otherValue`.
310
+ * @param ctx the parse tree
311
+ */
312
+ enterOtherValue?: (ctx: OtherValueContext) => void;
313
+ /**
314
+ * Exit a parse tree produced by `BomParser.otherValue`.
315
+ * @param ctx the parse tree
316
+ */
317
+ exitOtherValue?: (ctx: OtherValueContext) => void;
318
+ /**
319
+ * Enter a parse tree produced by `BomParser.numberDomainValue`.
320
+ * @param ctx the parse tree
321
+ */
322
+ enterNumberDomainValue?: (ctx: NumberDomainValueContext) => void;
323
+ /**
324
+ * Exit a parse tree produced by `BomParser.numberDomainValue`.
325
+ * @param ctx the parse tree
326
+ */
327
+ exitNumberDomainValue?: (ctx: NumberDomainValueContext) => void;
328
+ /**
329
+ * Enter a parse tree produced by `BomParser.limitValue`.
330
+ * @param ctx the parse tree
331
+ */
332
+ enterLimitValue?: (ctx: LimitValueContext) => void;
333
+ /**
334
+ * Exit a parse tree produced by `BomParser.limitValue`.
335
+ * @param ctx the parse tree
336
+ */
337
+ exitLimitValue?: (ctx: LimitValueContext) => void;
338
+ /**
339
+ * Enter a parse tree produced by `BomParser.limitTag`.
340
+ * @param ctx the parse tree
341
+ */
342
+ enterLimitTag?: (ctx: LimitTagContext) => void;
343
+ /**
344
+ * Exit a parse tree produced by `BomParser.limitTag`.
345
+ * @param ctx the parse tree
346
+ */
347
+ exitLimitTag?: (ctx: LimitTagContext) => void;
348
+ /**
349
+ * Enter a parse tree produced by `BomParser.staticValue`.
350
+ * @param ctx the parse tree
351
+ */
352
+ enterStaticValue?: (ctx: StaticValueContext) => void;
353
+ /**
354
+ * Exit a parse tree produced by `BomParser.staticValue`.
355
+ * @param ctx the parse tree
356
+ */
357
+ exitStaticValue?: (ctx: StaticValueContext) => void;
358
+ /**
359
+ * Enter a parse tree produced by `BomParser.number`.
360
+ * @param ctx the parse tree
361
+ */
362
+ enterNumber?: (ctx: NumberContext) => void;
363
+ /**
364
+ * Exit a parse tree produced by `BomParser.number`.
365
+ * @param ctx the parse tree
366
+ */
367
+ exitNumber?: (ctx: NumberContext) => void;
368
+ /**
369
+ * Enter a parse tree produced by `BomParser.scopeValue`.
370
+ * @param ctx the parse tree
371
+ */
372
+ enterScopeValue?: (ctx: ScopeValueContext) => void;
373
+ /**
374
+ * Exit a parse tree produced by `BomParser.scopeValue`.
375
+ * @param ctx the parse tree
376
+ */
377
+ exitScopeValue?: (ctx: ScopeValueContext) => void;
378
+ /**
379
+ * Enter a parse tree produced by `BomParser.implementsPart`.
380
+ * @param ctx the parse tree
381
+ */
382
+ enterImplementsPart?: (ctx: ImplementsPartContext) => void;
383
+ /**
384
+ * Exit a parse tree produced by `BomParser.implementsPart`.
385
+ * @param ctx the parse tree
386
+ */
387
+ exitImplementsPart?: (ctx: ImplementsPartContext) => void;
388
+ /**
389
+ * Enter a parse tree produced by `BomParser.extendsPart`.
390
+ * @param ctx the parse tree
391
+ */
392
+ enterExtendsPart?: (ctx: ExtendsPartContext) => void;
393
+ /**
394
+ * Exit a parse tree produced by `BomParser.extendsPart`.
395
+ * @param ctx the parse tree
396
+ */
397
+ exitExtendsPart?: (ctx: ExtendsPartContext) => void;
398
+ /**
399
+ * Enter a parse tree produced by `BomParser.packageDeclare`.
400
+ * @param ctx the parse tree
401
+ */
402
+ enterPackageDeclare?: (ctx: PackageDeclareContext) => void;
403
+ /**
404
+ * Exit a parse tree produced by `BomParser.packageDeclare`.
405
+ * @param ctx the parse tree
406
+ */
407
+ exitPackageDeclare?: (ctx: PackageDeclareContext) => void;
408
+ /**
409
+ * Enter a parse tree produced by `BomParser.datatype`.
410
+ * @param ctx the parse tree
411
+ */
412
+ enterDatatype?: (ctx: DatatypeContext) => void;
413
+ /**
414
+ * Exit a parse tree produced by `BomParser.datatype`.
415
+ * @param ctx the parse tree
416
+ */
417
+ exitDatatype?: (ctx: DatatypeContext) => void;
418
+ /**
419
+ * Enter a parse tree produced by `BomParser.arrayTag`.
420
+ * @param ctx the parse tree
421
+ */
422
+ enterArrayTag?: (ctx: ArrayTagContext) => void;
423
+ /**
424
+ * Exit a parse tree produced by `BomParser.arrayTag`.
425
+ * @param ctx the parse tree
426
+ */
427
+ exitArrayTag?: (ctx: ArrayTagContext) => void;
428
+ /**
429
+ * Enter a parse tree produced by `BomParser.packageName`.
430
+ * @param ctx the parse tree
431
+ */
432
+ enterPackageName?: (ctx: PackageNameContext) => void;
433
+ /**
434
+ * Exit a parse tree produced by `BomParser.packageName`.
435
+ * @param ctx the parse tree
436
+ */
437
+ exitPackageName?: (ctx: PackageNameContext) => void;
438
+ /**
439
+ * Enter a parse tree produced by `BomParser.propertyItem`.
440
+ * @param ctx the parse tree
441
+ */
442
+ enterPropertyItem?: (ctx: PropertyItemContext) => void;
443
+ /**
444
+ * Exit a parse tree produced by `BomParser.propertyItem`.
445
+ * @param ctx the parse tree
446
+ */
447
+ exitPropertyItem?: (ctx: PropertyItemContext) => void;
448
+ /**
449
+ * Enter a parse tree produced by `BomParser.propertyName`.
450
+ * @param ctx the parse tree
451
+ */
452
+ enterPropertyName?: (ctx: PropertyNameContext) => void;
453
+ /**
454
+ * Exit a parse tree produced by `BomParser.propertyName`.
455
+ * @param ctx the parse tree
456
+ */
457
+ exitPropertyName?: (ctx: PropertyNameContext) => void;
458
+ /**
459
+ * Enter a parse tree produced by `BomParser.className`.
460
+ * @param ctx the parse tree
461
+ */
462
+ enterClassName?: (ctx: ClassNameContext) => void;
463
+ /**
464
+ * Exit a parse tree produced by `BomParser.className`.
465
+ * @param ctx the parse tree
466
+ */
467
+ exitClassName?: (ctx: ClassNameContext) => void;
468
+ /**
469
+ * Enter a parse tree produced by `BomParser.fieldName`.
470
+ * @param ctx the parse tree
471
+ */
472
+ enterFieldName?: (ctx: FieldNameContext) => void;
473
+ /**
474
+ * Exit a parse tree produced by `BomParser.fieldName`.
475
+ * @param ctx the parse tree
476
+ */
477
+ exitFieldName?: (ctx: FieldNameContext) => void;
478
+ /**
479
+ * Enter a parse tree produced by `BomParser.methodName`.
480
+ * @param ctx the parse tree
481
+ */
482
+ enterMethodName?: (ctx: MethodNameContext) => void;
483
+ /**
484
+ * Exit a parse tree produced by `BomParser.methodName`.
485
+ * @param ctx the parse tree
486
+ */
487
+ exitMethodName?: (ctx: MethodNameContext) => void;
488
+ visitTerminal(node: TerminalNode): void;
489
+ visitErrorNode(node: ErrorNode): void;
490
+ enterEveryRule(node: ParserRuleContext): void;
491
+ exitEveryRule(node: ParserRuleContext): void;
492
+ }