我可以扩展 Proxy 类的子类吗?
我想创建一个完整的(真实的)二维数组。
为了最大限度地使用 Adobe 代码,我想使用可以管理排序和过滤器的 ListCollectionView。但要使用第二个维度,我需要重写 getProperty 方法,如以下代码。
包裹 { 导入 flash.utils.flash_proxy; 导入 mx.collections.ListCollectionView;
public class SubClass extends ListCollectionView /* extends Proxy */
{
override flash_proxy function getProperty(name : *) : *
{
...
}
override flash_proxy function setProperty(name : *, value : *) : void
{
...
}
}
这段
代码不起作用。 Flash Builder 4 对我说:
1004 Namespace was not found or is not a compile-time constant.
如果有人有解决方案或线索......
I want to create a complete (and real) 2-dimensional array.
In order to use a maximum of Adobe code, I want to use ListCollectionView which can manage sort and filters. But to use a second dimension, I need to override getProperty method, like following code.
package
{
import flash.utils.flash_proxy;
import mx.collections.ListCollectionView;
public class SubClass extends ListCollectionView /* extends Proxy */
{
override flash_proxy function getProperty(name : *) : *
{
...
}
override flash_proxy function setProperty(name : *, value : *) : void
{
...
}
}
}
This code doesn't work. Flash Builder 4 said to me:
1004 Namespace was not found or is not a compile-time constant.
If anyone has a solution or a clue...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这很容易:
It's easy :