List<PostShipment> allPostShipments = postShipmentManager
.findAllNotSent();
if (allPostShipments != null) {
objectList.addAll(allPostShipments);
}
Collections.sort(objectList, new TransportableComparator());
noOfObjects = objectList.getSize();
if (table != null) {
table.scrollRowToVisible(0);
}