English 中文(简体)
用于模拟代表多模式用户界面的州图的视觉编程工具
原标题:Visual programming tool for modeling statecharts representing multi-modal user interfaces

是否有代表多模式用户界面的州图模型的视觉编程工具? 我想建立一个由触摸和声音提供输入的机器人和窗口地铁应用程序。 应用程序引导用户通过一个提问器, 用于在医疗保健方案下进行筛选。 用户可以将文字输入文本框, 或者通过触摸按钮或说话生成事件 。

我发现" rel=“nofollow”>>the statecharts 被用于模拟反应系统行为,例如原始使用的Avionics系统,其创建者David Harel的任务是为以色列飞机工业公司建造的LAVI战斗机设计软件;IAI要明确和准确地具体说明飞机控制行为。他想要以直觉清晰和数学严格的方式具体说明行为。自那时以来,状态图表从仅仅是一种规格语言演变为“hrref=”,http://www.wisdom.weizmann.ac.il/~harel/SCANNED.PAPERS/OOutarcharts.pdf” rel=“nofol” >excuteable combilable and alyzable。

由于我所要构建的应用程序具有复杂的保健逻辑,并且由屏幕流的层次结构组成,它改变互动用户的投入,向外部网络服务发送行动,接收外部网络服务中的无序事件-所有都保持用户界面的响应性,我想用状态图表来模拟应用程序逻辑。然而,我找不到任何程序工具,可以让我分别分别撰写应用的商业逻辑和UI(而不仅仅是屏幕界面组件),例如,如果我想代表 UI ins html5/,以及

我发现了一些工具, 但与我的申请要求不符。 主要是没有这样的例子 : “ 强势” 设计出这样的应用程序, 明确区分了州图中的行为和以某种标记语言表示的 UI 。 我的调查结果是 :

问题回答

你应该看看""http://www.statecharts.org" rel="nofollow" >http://www.statecharts.org 。它有一个编辑、鉴定、不同目标语言的若干生成器和良好的工作模拟环境。

语义学与大卫·哈雷尔的理论工作很接近,是开放源码。

不久前,根据YAKINDU SCT 1版(目前版本为2.6.2),我用一个类似的题目做了我的学士论文。找到以下论文的介绍:https://vimeo.com/13440814

Further find the following video of YAKINDU SCT version 2 for an feature overview: https://www.youtube.com/watch?v=uO6MASCBPrg Further you will find an extensive set of tutorials an youtube: https://www.youtube.com/watch?v=bhru1n3ZsFo&list=PLmHMvhX5wK_aohX5sOeAMogFDwlc3gJYR

除了你的观点以外,你可能认为SCT目前不支持 SCXML 并使用它自己的格式。 但是,由于它是开放源码,以日蚀模型技术为基础,它可能不是什么大事,而是取代序列化,并持续以 SCXML 格式存在。





相关问题
Android - ListView fling gesture triggers context menu

I m relatively new to Android development. I m developing an app with a ListView. I ve followed the info in #1338475 and have my app recognizing the fling gesture, but after the gesture is complete, ...

AsyncTask and error handling on Android

I m converting my code from using Handler to AsyncTask. The latter is great at what it does - asynchronous updates and handling of results in the main UI thread. What s unclear to me is how to handle ...

Android intent filter for a particular file extension?

I want to be able to download a file with a particular extension from the net, and have it passed to my application to deal with it, but I haven t been able to figure out the intent filter. The ...

Android & Web: What is the equivalent style for the web?

I am quite impressed by the workflow I follow when developing Android applications: Define a layout in an xml file and then write all the code in a code-behind style. Is there an equivalent style for ...

TiledLayer equivalent in Android [duplicate]

To draw landscapes, backgrounds with patterns etc, we used TiledLayer in J2ME. Is there an android counterpart for that. Does android provide an option to set such tiled patterns in the layout XML?

Using Repo with Msysgit

When following the Android Open Source Project instructions on installing repo for use with Git, after running the repo init command, I run into this error: /c/Users/Andrew Rabon/bin/repo: line ...

Android "single top" launch mode and onNewIntent method

I read in the Android documentation that by setting my Activity s launchMode property to singleTop OR by adding the FLAG_ACTIVITY_SINGLE_TOP flag to my Intent, that calling startActivity(intent) would ...

From Web Development to Android Development

I have pretty good skills in PHP , Mysql and Javascript for a junior developer. If I wanted to try my hand as Android Development do you think I might find it tough ? Also what new languages would I ...

热门标签