< Day Day Up > |
Recipe 3.18 Creating TODO Tasks3.18.1 ProblemYou want to use annotations to keep track of everything you still have to do in your code. 3.18.2 SolutionAdd TODO comments to your code; they'll appear in the Tasks view. 3.18.3 DiscussionJust including the text TODO in a single-line comment will add that comment's text to the Tasks view, enabling you to keep track of tasks in one location. You can see an example in Figure 3-20. Figure 3-20. TODO comments in the Tasks view3.18.3.1 Eclipse 3.0The Problems view replaced the Tasks view in Eclipse 3.0, so the Tasks view doesn't appear in the Java perspective by default in this version of Eclipse. To show it, select Window Show View Other Basic Tasks. |
< Day Day Up > |