if (value.startsWith("Type-")) {
String type = value.substring("Type-".length());
setAttributeValue(data, GoogleCodeAttribute.TYPE, type);
} else if (value.startsWith("Priority-")) {
String priority = value.substring("Priority-".length());
PriorityLevel level = LabelUtils.convertToMylyn(priority);
if (level != null) {
setAttributeValue(data, GoogleCodeAttribute.PRIORITY, level.toString());
}
} else if (value.startsWith("Milestone-")) {
String milestone = value.substring("Milestone-".length());
setAttributeValue(data, GoogleCodeAttribute.MILESTONE, milestone);
}