}
return fromPartStatusMap.get(status.getValue());
}
protected static Long fromPercentComplete(PropertyList propertyList) {
PercentComplete iCalObj = (PercentComplete) propertyList.getProperty(PercentComplete.PERCENT_COMPLETE);
if (iCalObj == null) {
return null;
}
return new Long((long)iCalObj.getPercentage());
}