}
return new Long((long)iCalObj.getPercentage());
}
protected static Double fromPriority(PropertyList propertyList) {
Priority iCalObj = (Priority) propertyList.getProperty(Priority.PRIORITY);
if (iCalObj == null) {
return null;
}
return new Double(iCalObj.getLevel());
}