Flare prefuse 依赖关系图错误
我正在使用 Flash Builder 4 显示依赖关系图。 源代码位于此位置 - 依赖关系图示例应用程序< /a> 我收到错误 -
在源路径中找到的文件必须具有与定义的包“flare.apps”相同的包结构“”。
我已经导入了App.as 有人可以帮忙吗?
I am using Flash Builder 4 to display a dependency graph.
The source code is in this location - dependency graph sample application
I get the error -
A file found in a source-path must have the same package structure '', as the definition's package, 'flare.apps'.
I have imported App.as
Can anyone help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
文件
/src/com/example/Foo.as
应以package com.example
开头并定义Foo
类。这是 Flash Builder 所需的常见 OO 设置。在项目的
/src
文件夹中重新创建flare/apps/App.as
目录结构,一切就完成了。The file
/src/com/example/Foo.as
should begin withpackage com.example
and define theFoo
class. This is a common OO setup that Flash Builder requires.Recreate the
flare/apps/App.as
directory structure in your project's/src
folder and you'll be all set.