我正在将Android代码移植到BlackBerry ..
下面是我的Android代码片段..
public Vector<InMapping> INMSGMAPPING;
public Vector<InMapping> getINMSGMAPPING() {
return INMSGMAPPING;
}
以上代码给出了以下错误:
generics are not supported in -source 1.3
[exec] (use -source 5 or higher to enable generics)
我知道上面发生了错误,因为BlackBerry中不允许使用Generics。
我是否可以在BlackBerry中实现相同的功能。
感谢。