DynamicDAO.save(filter);
}
private void fillLabels() {
ILabel label = fFactory.createLabel(null, "Later");
label.setColor("113,21,88");
label.setOrder(4);
DynamicDAO.save(label);
label = fFactory.createLabel(null, "Personal");
label.setColor("105,130,73");
label.setOrder(3);
DynamicDAO.save(label);
fImportantLabel = fFactory.createLabel(null, "Important");
fImportantLabel.setColor("177,39,52");
fImportantLabel.setOrder(2);
DynamicDAO.save(fImportantLabel);
label = fFactory.createLabel(null, "Work");
label.setColor("234,152,79");
label.setOrder(1);
DynamicDAO.save(label);
label = fFactory.createLabel(null, "To Do");
label.setColor("113,160,168");
label.setOrder(0);
DynamicDAO.save(label);
}