Java 类ims.ocrr.vo.SpecimenNameVoCollection 实例源码

项目:AvoinApotti    文件:ResultHistoryImpl.java   
private SpecimenNameVoCollection buildOrderSpecimenCollection(OrderResultHistoryVo orderResultHistoryVo) 
{
    if(orderResultHistoryVo == null || orderResultHistoryVo.getResultDetail() == null || orderResultHistoryVo.getResultDetail().getPathologyResultDetails() == null)
        return null;

    SpecimenNameVoCollection spec = new SpecimenNameVoCollection();

    for(PathologyResultDetailVo pathResult : orderResultHistoryVo.getResultDetail().getPathologyResultDetails())
    {
        if(pathResult == null)
            continue;

        spec.add(pathResult.getOrderSpecimen());
    }

    return spec;
}
项目:openMAXIMS    文件:ResultHistoryImpl.java   
private SpecimenNameVoCollection buildOrderSpecimenCollection(OrderResultHistoryVo orderResultHistoryVo) 
{
    if(orderResultHistoryVo == null || orderResultHistoryVo.getResultDetail() == null || orderResultHistoryVo.getResultDetail().getPathologyResultDetails() == null)
        return null;

    SpecimenNameVoCollection spec = new SpecimenNameVoCollection();

    for(PathologyResultDetailVo pathResult : orderResultHistoryVo.getResultDetail().getPathologyResultDetails())
    {
        if(pathResult == null)
            continue;

        spec.add(pathResult.getOrderSpecimen());
    }

    return spec;
}
项目:openMAXIMS    文件:ResultHistoryImpl.java   
private SpecimenNameVoCollection buildOrderSpecimenCollection(OrderResultHistoryVo orderResultHistoryVo) 
{
    if(orderResultHistoryVo == null || orderResultHistoryVo.getResultDetail() == null || orderResultHistoryVo.getResultDetail().getPathologyResultDetails() == null)
        return null;

    SpecimenNameVoCollection spec = new SpecimenNameVoCollection();

    for(PathologyResultDetailVo pathResult : orderResultHistoryVo.getResultDetail().getPathologyResultDetails())
    {
        if(pathResult == null)
            continue;

        spec.add(pathResult.getOrderSpecimen());
    }

    return spec;
}
项目:openmaxims-linux    文件:ResultHistoryImpl.java   
private SpecimenNameVoCollection buildOrderSpecimenCollection(OrderResultHistoryVo orderResultHistoryVo) 
{
    if(orderResultHistoryVo == null || orderResultHistoryVo.getResultDetail() == null || orderResultHistoryVo.getResultDetail().getPathologyResultDetails() == null)
        return null;

    SpecimenNameVoCollection spec = new SpecimenNameVoCollection();

    for(PathologyResultDetailVo pathResult : orderResultHistoryVo.getResultDetail().getPathologyResultDetails())
    {
        if(pathResult == null)
            continue;

        spec.add(pathResult.getOrderSpecimen());
    }

    return spec;
}