我正在将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中实现相同的功能。
谢谢。
最佳答案