use of alma.ACS.CBdoubleSeq in project ACS by ACS-Community.
the class RequesterUtil method giveCBDoubleSequence.
/**
*
* @param cs
* @param x
* @return
* @throws AcsJContainerServicesEx
*/
public static CBdoubleSeq giveCBDoubleSequence(ContainerServicesBase cs, ResponseReceiver<Double[]> x) throws AcsJContainerServicesEx {
CBdoubleSeq ret;
Objects.CBdoubleSeqImpl cb = new Objects.CBdoubleSeqImpl(x);
OffShoot offshoot = cs.activateOffShoot(cb);
ret = CBdoubleSeqHelper.narrow(offshoot);
return ret;
}
Aggregations