I know two ways for creating tasks using eclipse. With Tasks view or with TODO annotation in comment, like
//TODO: wtf? Rewrite it using constants.
int foo = 3.1 * 3;
If I use first way I can edit tasks and set "priority". Can I do it for tasks that I create using TODO annotation? Thanks.
