Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse: Difference between the "Tasks" view and the "Task List" View

Tags:

eclipse

mylyn

What is the difference between the "Tasks" view and the "Task List" view in eclipse.

I understand that one is managed by Mylyn, but I would like a comprehensive answer if anyone's got the time. It will help many people in the future when they a are searching for information on eclipse.

  • What are the differences between the two views?
  • Does one totally supersede/replace the other?
  • Is there some way that they work together?

Thanks

like image 636
Rabbi Avatar asked Jan 17 '10 16:01

Rabbi


People also ask

What is Eclipse task list?

Task List. Use the Task List to view and manage your tasks. If the task list view is not visible, you can open it by navigating to Window -> Show View -> Other... -> Mylyn -> Task List. The Task List contains both "Local Tasks" and shared repository tasks that are stored in a task repository such as Bugzilla or Trac.

How do I show tasks in Eclipse?

Click on the Window menu and select Show View → Other. In the filter text box enter Tasks. Under General, select Tasks.


2 Answers

The Task List is part of Eclipse Mylyn and contains tasks that are downloaded from popular bug trackers like Bugzilla, Trac, Mantis, etc. Many developers like having their tasks directly in Eclipse, as it saves them from having to switch from Eclipse to a web browser to see what task to do next. Additionaly, the deep integration of your tasks with Eclipse allows features like focusing your views on the task at hand (2 minute video) and toaster notifications as tasks are updated.

The Tasks View is a bit of a misnomer, it might be more appropriately called the Tags View. It contains a list of tags that exist in your source code. For instance, if you have the tag //FIXME or //TODO in a source code file then an entry will appear in the Tasks View.

like image 129
David Shepherd Avatar answered Oct 15 '22 04:10

David Shepherd


Tasks' content generated automatically if you marked some code with TODO or FIXME.

Task List is the actual task list. You have to define it manually or you can also connect to some servers (Bugzilla, JIRA, Trac) to get the tasks. Task List is part of Mylyn and if you use a task, it will activate a special context for that task. This is nice presentation of Mylyn: http://live.eclipse.org/node/573

You can use both together as they are working on different levels as I explained before.

like image 45
nanda Avatar answered Oct 15 '22 03:10

nanda