First of all, if you're doing string comparison you should be using .equals()
Second, setEnabled controls whether the checkbox is active. You're looking for setSelected()
And I would recommend doing something like
boolean selected = Boolean.parseSelected(line05);
checkbox.setSelected(selected);
Cleaner code