我正在将 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 中不允许使用泛型。
是否有任何替代方法可以在 BlackBerry 中实现相同的功能。
谢谢。