Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
2  
What second way are you talking about? please clarify – thejh Dec 15 '10 at 15:37
@thejh, updated. I mean, "if i create task with todo annotation (as in example) could I define it's priority?" – Stas Kurilin Dec 15 '10 at 15:40

3 Answers

up vote 14 down vote accepted

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".

share|improve this answer
Thanks. It's good point. – Stas Kurilin Dec 15 '10 at 15:43
This thread is quite old, but I'd like to mention also the XXX Tag. It has nothing to do with porn, but marks a code like a TODO with a lower priority. This means a XXX mark is a TODO you "could" do someday, or just an idea you don't want to forget. TODOs you "should" do, and FIXMEs you "must" do. Just my 2 cents here. – Asturio Mar 21 '12 at 8:03
@Asturio interesting usage, anyway low priority for XXX needs to be set in Properties, because by default it has normal priority. – bluish Mar 21 '12 at 9:08

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').

share|improve this answer
Thanks. I see.. – Stas Kurilin Dec 15 '10 at 15:42

Go to Window > Preferences > Java > Task Tags and make XXX as a high priority alias of FIXME. These high priority tags are used for items that should be looked at before the next release while the normal TODO tags are used to mark items that aren't critical.

Source: http://www.newt.com/java/eclipse/

share|improve this answer
Thanks. link good ) – Stas Kurilin Dec 15 '10 at 15:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.