/**
* A valid cdma cell must have basestation id, network id and system id set
* @param cdmaLocation {@link CdmaCellLocation}
* @return true if valid cdma id
*/
private boolean isValidCdmaCell(final CdmaCellLocation cdmaLocation) {
if (cdmaLocation == null) {
return false;
}
return ((cdmaLocation.getBaseStationId() != -1) && (cdmaLocation.getNetworkId() != -1) && (cdmaLocation.getSystemId() != -1));
}
WirelessLoggerService.java 文件源码
java
阅读 32
收藏 0
点赞 0
评论 0
项目:openbmap
作者:
评论列表
文章目录