Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Task priorities in Eclipse

Tags:

I know two ways to create tasks using Eclipse; with the tasks view or with the TODO annotation in a comment:

//TODO: wtf? Rewrite it using constants. int foo = 3.1 * 3; 

If I use the first way, I can edit tasks and set the "priority".

Can I do it for tasks that I create using TODO annotation?

like image 613
Stan Kurilin Avatar asked Dec 15 '10 15:12

Stan Kurilin


2 Answers

I know that with FIXME priority is set to High, while with TODO is set to Normal. This is configurable too: inside Window > Properties search for "Task tags".

like image 173
bluish Avatar answered Oct 26 '22 15:10

bluish


Go to File > Properties > Task Tags

By default TODO = normal priority            FIXME = high priority 

You can specify new priority labels and give them normal, low, or high priorities. (you might need to click on 'enable project specific settings').

like image 24
zmf Avatar answered Oct 26 '22 14:10

zmf