| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> |
| <html> |
| <head> |
| <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> |
| <title>JDT Core 3.6 Plan</title> |
| <script type="text/javascript"> |
| <!-- |
| function linkifyBugs() { |
| // Replaces plain text 'bug xyz' by a link to Eclipse's bugzilla. |
| traverseLinkifyBugs(document.getElementsByTagName("body")[0]); |
| } |
| function nextNode(node) { |
| if (node.nextSibling) { |
| return node.nextSibling; |
| } else if (node.parentNode == document.getElementsByTagName("body")[0]) { |
| return null; |
| } else { |
| return nextNode(node.parentNode); |
| } |
| } |
| function traverseLinkifyBugs(node) { |
| while (node) { |
| if (node.nodeType == 1/*element*/ && node.nodeName == "a") { |
| node= nextNode(node); |
| |
| } else if (node.childNodes != null && node.childNodes.length > 0) { |
| node= node.childNodes[0]; |
| |
| } else if (node.nodeType == 3/*text*/) { |
| var txt= node.data; |
| var regex= /([Bb]ug\s*)([0-9]+)/; |
| var res= regex.exec(txt); |
| if (res) { |
| var matchStart= txt.indexOf(res[0]); |
| |
| var beforeNode= document.createTextNode(txt.substring(0, matchStart)); |
| node.parentNode.insertBefore(beforeNode, node); |
| |
| var linkNode= document.createElement("a"); |
| linkNode.href= "https://bugs.eclipse.org/bugs/show_bug.cgi?id=" + res[2]; |
| linkNode.appendChild(document.createTextNode(res[1] + res[2])); |
| node.parentNode.insertBefore(linkNode, node); |
| |
| node.data= txt.substr(matchStart + res[0].length); |
| // continue with current (shortened) node... |
| } else { |
| node= nextNode(node); |
| } |
| |
| } else { |
| node= nextNode(node); |
| } |
| } |
| } |
| |
| function showHiddenWork() { |
| // Open this document with an URL ending in ?work, and the "work" class becomes visible. |
| if (window.location.search == "?work") { |
| var spans= document.getElementsByTagName("span") |
| for (var i in spans) { |
| var s= spans[i]; |
| if (s.className == "work") { |
| s.style.visibility= "visible"; |
| s.insertBefore(document.createTextNode("\u00a0"), s.firstChild); |
| s.insertBefore(document.createTextNode("\u00a0"), s.lastChild.nextSibling); |
| } |
| }; |
| } |
| } |
| |
| //--> |
| </script> |
| <style type="text/css"> |
| .priority { |
| color: blue; |
| font-style: italic; |
| } |
| .work { |
| background: lightgreen; |
| visibility: hidden; |
| } |
| </style> |
| </head> |
| |
| <body text="#000000" bgcolor="#FFFFFF" onload="linkifyBugs();showHiddenWork();"> |
| |
| <table border="0" cellspacing="5" cellpadding="2" width="100%" > |
| |
| <tr> |
| <td width="100%"> |
| <p>Last revised 2009/09/15</p> |
| |
| <p>This plan is under continuous refinement. Please send comments about this plan to the <a href="mailto:jdt-core-dev@eclipse.org">jdt-core-dev@eclipse.org</a> developer mailing list.</p> |
| |
| <h2><a name="Overall_Planning"></a>Overall Goals</h2> |
| <p>This section lists the goals for Eclipse 3.6 for the JDT Core component as listed on the |
| <a href="http://www.eclipse.org/projects/project-plan.php?projectid=eclipse">Eclipse Project 3.6 Draft Plan</a>. |
| </p> |
| |
| <p> |
| <strong><a name="1"></a>[1] Performance</strong>. |
| Monitor overall performance and memory consumption which includes the addition of new performance tests for new features. |
| </p> |
| |
| <p> |
| <strong><a name="2"></a>[2] Reliability</strong>. |
| Provide APIs for clients where needed and fix critical bugs. |
| </p> |
| |
| <p> |
| <strong><a name="3"></a>[3] Keep Eclipse vibrant and attractive</strong>. |
| Deliver new productivity features like easier project setup or e4 compatibility. |
| </p> |
| <p> |
| <strong><a name="4"></a>[4] Platform Support</strong>. |
| Add support for Java 7 and make sure we run on Windows 7. |
| </p> |
| </td> |
| </tr> |
| |
| <tr> |
| <td width="100%"> |
| <h2><a name="Work_Items"></a><br>Work Items</h2> |
| <p> |
| This section lists the <em>possible</em> work items for Eclipse 3.6 for the JDT Text and the JDT UI component |
| with the [corresponding theme]. |
| Some of those items have a <span class="priority">higher priority</span> than others. |
| </p> |
| |
| <ul> |
| <li><h4>Java 7 [<a href="#4">4</a>]</h4> |
| <ul> |
| <li class="priority">implement the jsr 308 (Annotations on type)</li> |
| <li class="priority">implement the jsr 294 (module support) when available</li> |
| <li class="priority">implement the jsr 292 (invokedynamic support) when available</li> |
| <li class="priority">implement proposals for the coin project (depending on getting access to the specification)</li> |
| </ul> |
| </li> |
| |
| <li><h4>Windows 7 Support [<a href="#4">4</a>]</h4> |
| <ul> |
| <li class="priority">make sure that all JDT/Core tests passed on Windows 7 for 3.5 maintenance and 3.6 stream.</li> |
| <li class="priority">fix bugs that arise during test pass</li> |
| </ul></li> |
| |
| <li><h4>API [<a href="#2">2</a>]</h4> |
| </li> |
| |
| <li><h4>Performance And Memory Consumption [<a href="#1">1</a>]</h4> |
| <ul> |
| <li class="priority"><img src="../images/progress.png" border="0" alt="progress"> constantly watch performance test results and act when red</li> |
| <li class="priority"><img src="../images/progress.png" border="0" alt="progress"> continue to provide new tests</li> |
| </ul> |
| </li> |
| <li><h4>General Items</h4> |
| <ul> |
| <li class="priority"><img src="../images/progress.png" border="0" alt="progress"> 3.5.x maintenance work <span class="work">[all]</span></li> |
| <li><img src="../images/progress.png" border="0" alt="progress"> look at bugs with patches and review those</li> |
| </ul></li> |
| </ul> |
| </td> |
| </tr> |
| <tr> |
| <td align="left" valign="top" colspan="2" width="100%" bgcolor="#595791"><font face="Arial,Helvetica"><font color="#FFFFFF"><a name="Milestone_Planning_M1"></a>Milestone M1 (2009-08-07)</font></font></td> |
| </tr> |
| <tr> |
| <td width="100%"> |
| <h4><img src="../images/adarrow.png" border="0" height="16" width="16" align="top" alt="arrow"> General Items </h4> |
| <ul> |
| <li class="priority"><img src="../images/ok.png" border="0" alt="ok"> [<a href="#2">2</a>] 3.5.1 maintenance work <span class="work">[all]</span></li> |
| <li class="priority"><img src="../images/ok.png" border="0" alt="ok"> [<a href="#2">2</a>] bug fixing <span class="work">[all]</span></li> |
| <li class="priority"><img src="../images/ok.png" border="0" alt="ok"> [<a href="#3">3</a>] 3.6 planning <span class="work">[olivier]</span></li> |
| </ul> |
| <h4><img src="../images/adarrow.png" border="0" height="16" width="16" align="top" alt="arrow"> Permanent Items</h4> |
| <ul> |
| <li>bugzilla inbox tracking</li> |
| <li>bug fixing |
| (<a href="http://bugs.eclipse.org/bugs/buglist.cgi?product=JDT&component=CORE&target_milestone=3.6+M1&resolution=FIXED">fixed</a>) |
| (<a href="http://dev.eclipse.org/bugs/buglist.cgi?product=JDT&component=CORE&target_milestone=3.6+M1&namedcmd=Assigned">all</a>) |
| (<a href="http://dev.eclipse.org/bugs/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&product=JDT&component=CORE&target_milestone=3.6+M1">unresolved</a>) |
| (<a href="http://dev.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&product=JDT&component=CORE&target_milestone=3.6+M1">resolved</a>) |
| </li> |
| <li>watch performance tests</li> |
| </ul> |
| </td> |
| </tr> |
| |
| <tr> |
| <td align="left" valign="top" colspan="2" width="100%" bgcolor="#595791"><font face="Arial,Helvetica"><font color="#FFFFFF"><a name="Milestone_Planning_M2"></a>Milestone M2 (2009-09-18)</font></font></td> |
| </tr> |
| |
| <tr> |
| <td width="100%"> |
| <h4><img src="../images/adarrow.png" border="0" height="16" width="16" align="top" alt="arrow"> General Items </h4> |
| <ul> |
| <li class="priority"><img src="../images/ok.png" border="0" alt="ok"> [<a href="#2">2</a>] deliver 3.5.1 <span class="work">[all]</span></li> |
| <li class="priority"><img src="../images/ok.png" border="0" alt="ok"> [<a href="#2">2</a>] bug fixing <span class="work">[all]</span></li> |
| <li class="priority"><img src="../images/ok.png" border="0" alt="ok"> [<a href="#3">3</a>] 3.6 planning <span class="work">[olivier]</span></li> |
| </ul> |
| <h4><img src="../images/adarrow.png" border="0" height="16" width="16" align="top" alt="arrow"> Permanent Items</h4> |
| <ul> |
| <li>bugzilla inbox tracking</li> |
| <li>bug fixing |
| (<a href="http://bugs.eclipse.org/bugs/buglist.cgi?product=JDT&component=CORE&target_milestone=3.6+M2&resolution=FIXED">fixed</a>) |
| (<a href="http://dev.eclipse.org/bugs/buglist.cgi?product=JDT&component=CORE&target_milestone=3.6+M2&namedcmd=Assigned">all</a>) |
| (<a href="http://dev.eclipse.org/bugs/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&product=JDT&component=CORE&target_milestone=3.6+M2">unresolved</a>) |
| (<a href="http://dev.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&product=JDT&component=CORE&target_milestone=3.6+M2">resolved</a>) |
| </li> |
| <li>watch performance tests</li> |
| </ul> |
| </td> |
| </tr> |
| |
| <tr> |
| <td align="left" valign="top" colspan="2" width="100%" bgcolor="#595791"><font face="Arial,Helvetica"><font color="#FFFFFF"><a name="Milestone_Planning_M3"></a>Milestone M3 (2008-10-31)</font></font></td> |
| </tr> |
| |
| <tr> |
| <td width="100%"> |
| <h4><img src="../images/adarrow.png" border="0" height="16" width="16" align="top" alt="arrow"> General Items </h4> |
| <ul> |
| <li class="priority"><img src="../images/ok.png" border="0" alt="ok"> [<a href="#2">2</a>] 3.5.2 maintenance work <span class="work">[all]</span></li> |
| <li class="priority"><img src="../images/ok.png" border="0" alt="ok"> [<a href="#2">2</a>] bug fixing <span class="work">[all]</span></li> |
| <li class="priority"><img src="../images/ok.png" border="0" alt="ok"> [<a href="#3">3</a>] 3.6 planning <span class="work">[olivier]</span></li> |
| </ul> |
| <h4><img src="../images/adarrow.png" border="0" height="16" width="16" align="top" alt="arrow"> Java 7 support </h4> |
| <ul> |
| <li><img src="../images/progress.png" border="0" alt="progress"> [<a href="#2">4</a>] investigate jsr 308 support (bug 287648) <span class="work">[srikanth]</span></li> |
| </ul> |
| <h4><img src="../images/adarrow.png" border="0" height="16" width="16" align="top" alt="arrow"> Permanent Items</h4> |
| <ul> |
| <li>bugzilla inbox tracking</li> |
| <li>bug fixing |
| (<a href="http://bugs.eclipse.org/bugs/buglist.cgi?product=JDT&component=CORE&target_milestone=3.6+M3&resolution=FIXED">fixed</a>) |
| (<a href="http://dev.eclipse.org/bugs/buglist.cgi?product=JDT&component=CORE&target_milestone=3.6+M3&namedcmd=Assigned">all</a>) |
| (<a href="http://dev.eclipse.org/bugs/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&product=JDT&component=CORE&target_milestone=3.6+M3">unresolved</a>) |
| (<a href="http://dev.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&product=JDT&component=CORE&target_milestone=3.6+M3">resolved</a>) |
| </li> |
| <li>watch performance tests</li> |
| </ul> |
| </td> |
| </tr> |
| <tr> |
| <td align="left" valign="top" colspan="2" width="100%" bgcolor="#595791"><font face="Arial,Helvetica"><font color="#FFFFFF"><a name="Milestone_Planning_M4"></a>Milestone M4 (2009-12-11)</font></font></td> |
| </tr> |
| <tr> |
| <td width="100%"> |
| <h4><img src="../images/adarrow.png" border="0" height="16" width="16" align="top" alt="arrow"> General Items </h4> |
| <ul> |
| <li class="priority"><img src="../images/ok.png" border="0" alt="ok"> [<a href="#2">2</a>] 3.5.1 maintenance work <span class="work">[all]</span></li> |
| <li class="priority"><img src="../images/ok.png" border="0" alt="ok"> [<a href="#2">2</a>] bug fixing <span class="work">[all]</span></li> |
| <li class="priority"><img src="../images/ok.png" border="0" alt="ok"> [<a href="#3">3</a>] 3.6 planning <span class="work">[olivier]</span></li> |
| </ul> |
| <h4><img src="../images/adarrow.png" border="0" height="16" width="16" align="top" alt="arrow"> Java 7 support </h4> |
| <ul> |
| <li><img src="../images/progress.png" border="0" alt="progress"> [<a href="#2">4</a>] investigate jsr 308 support (bug 287648) <span class="work">[srikanth]</span> |
| <br>A new branch "JSR_308" has been created to reflect the work on that jsr.</li> |
| <li><img src="../images/progress.png" border="0" alt="progress"> [<a href="#2">1</a>] improve memory consumption for APT processing (bug 288211) <span class="work">[satyam]</span></li> |
| </ul> |
| <h4><img src="../images/adarrow.png" border="0" height="16" width="16" align="top" alt="arrow"> Permanent Items</h4> |
| <ul> |
| <li>bugzilla inbox tracking</li> |
| <li>bug fixing |
| (<a href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced;bug_status=RESOLVED;bug_status=VERIFIED;component=Core;resolution=FIXED;classification=Eclipse;product=JDT;target_milestone=3.6%20M4">fixed</a>) |
| (<a href="http://dev.eclipse.org/bugs/buglist.cgi?product=JDT&component=CORE&target_milestone=3.6+M4&namedcmd=Assigned">all</a>) |
| (<a href="http://dev.eclipse.org/bugs/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&product=JDT&component=CORE&target_milestone=3.6+M4">unresolved</a>) |
| (<a href="http://dev.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&product=JDT&component=CORE&target_milestone=3.6+M4">resolved</a>) |
| </li> |
| <li>watch performance tests</li> |
| </ul> |
| </td> |
| </tr> |
| <tr> |
| <td align="left" valign="top" colspan="2" width="100%" bgcolor="#595791"><font face="Arial,Helvetica"><font color="#FFFFFF"><a name="Milestone_Planning_M5"></a>Milestone M5 (2010-01-29)</font></font></td> |
| </tr> |
| <tr> |
| <td width="100%"> |
| <h4><img src="../images/adarrow.png" border="0" height="16" width="16" align="top" alt="arrow"> General Items </h4> |
| <ul> |
| <li class="priority"><img src="../images/ok.png" border="0" alt="ok"> [<a href="#2">2</a>] 3.5.2 maintenance work <span class="work">[all]</span></li> |
| <li class="priority"><img src="../images/ok.png" border="0" alt="ok"> [<a href="#2">2</a>] bug fixing <span class="work">[all]</span></li> |
| <li class="priority"><img src="../images/ok.png" border="0" alt="ok"> [<a href="#3">3</a>] 3.6 planning <span class="work">[olivier]</span></li> |
| </ul> |
| <h4><img src="../images/adarrow.png" border="0" height="16" width="16" align="top" alt="arrow"> Java 7 support </h4> |
| <ul> |
| <li><img src="../images/progress.png" border="0" alt="progress"> [<a href="#2">4</a>] investigate jsr 308 support (bug 287648) <span class="work">[srikanth]</span> |
| <br>A new branch "JSR_308" has been created to reflect the work on that jsr.</li> |
| </ul> |
| <h4><img src="../images/adarrow.png" border="0" height="16" width="16" align="top" alt="arrow"> Permanent Items</h4> |
| <ul> |
| <li>bugzilla inbox tracking</li> |
| <li>bug fixing |
| (<a href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced;bug_status=RESOLVED;bug_status=VERIFIED;component=Core;resolution=FIXED;classification=Eclipse;product=JDT;target_milestone=3.6%20M5">fixed</a>) |
| (<a href="http://dev.eclipse.org/bugs/buglist.cgi?product=JDT&component=CORE&target_milestone=3.6+M5&namedcmd=Assigned">all</a>) |
| (<a href="http://dev.eclipse.org/bugs/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&product=JDT&component=CORE&target_milestone=3.6+M5">unresolved</a>) |
| (<a href="http://dev.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&product=JDT&component=CORE&target_milestone=3.6+M5">resolved</a>) |
| </li> |
| <li>watch performance tests</li> |
| </ul> |
| </td> |
| </tr> |
| <tr> |
| <td align="left" valign="top" colspan="2" width="100%" bgcolor="#595791"><font face="Arial,Helvetica"><font color="#FFFFFF"><a name="Milestone_Planning_M6"></a>Milestone M6 (2010-03-12) - API FREEZE</font></font></td> |
| </tr> |
| <tr> |
| <td width="100%"> |
| <a name="current-milestone"></a> |
| <h4><img src="../images/adarrow.png" border="0" height="16" width="16" align="top" alt="arrow"> General Items </h4> |
| <ul> |
| <li class="priority"><img src="../images/ok.png" border="0" alt="ok"> [<a href="#2">2</a>] bug fixing <span class="work">[all]</span></li> |
| <li class="priority"><img src="../images/ok.png" border="0" alt="ok"> [<a href="#3">3</a>] 3.6 planning <span class="work">[olivier]</span></li> |
| </ul> |
| <h4><img src="../images/adarrow.png" border="0" height="16" width="16" align="top" alt="arrow"> Java 7 support </h4> |
| <ul> |
| <li><img src="../images/progress.png" border="0" alt="progress"> [<a href="#2">4</a>] investigate jsr 308 support (bug 287648) <span class="work">[srikanth]</span> |
| <br>A new branch "JSR_308" has been created to reflect the work on that jsr.</li> |
| </ul> |
| <h4><img src="../images/adarrow.png" border="0" height="16" width="16" align="top" alt="arrow"> Bug fixes</h4> |
| <ul> |
| <li><img src="../images/ok.png" border="0" alt="ok"> Bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=281551">281551</a> - [build path] Source attachments wrong for automatically added libraries<span class="work">[Jay]</span></li> |
| <li><img src="../images/ok.png" border="0" alt="ok"> Bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=294057">294057</a> - [1.5][compiler] Imports not resolved correctly with generics and inner interfaces<span class="work">[Srikanth]</span></li> |
| <li><img src="../images/ok.png" border="0" alt="ok"> Bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=300783">300783</a> - [compiler] private Instance Variable hides public Inner class<span class="work">[Srikanth]</span></li> |
| <li><img src="../images/ok.png" border="0" alt="ok"> Bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=300940">300940</a> - Buffer of opened external CU (*.java file) is not updated while typing<span class="work">[Olivier]</span></li> |
| <li><img src="../images/ok.png" border="0" alt="ok"> Bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=271121">271121</a> - code assist takes way too long<span class="work">[Satyam]</span></li> |
| <li><img src="../images/progress.png" border="0" alt="progress"> Bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=289057">289057</a> - Java Content Assist taking too long<span class="work">[Satyam]</span></li> |
| </ul> |
| <h4><img src="../images/adarrow.png" border="0" height="16" width="16" align="top" alt="arrow"> API</h4> |
| <ul> |
| <li><img src="../images/ok.png" border="0" alt="ok"> Bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=252431">252431</a> - New API is needed to better identify referenced jars in the Class-Path: entry<span class="work">[Jay]</span> |
| </li> |
| <li><img src="../images/ok.png" border="0" alt="ok"> Bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=283806">283806</a> - New API is needed to attach source code for referenced jars in the Class-Path: entry<span class="work">[Jay]</span> |
| </li> |
| <li><img src="../images/ok.png" border="0" alt="ok"> Bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=246594">246594</a> - [model] API request: ITypeParameter#getBoundsSignatures() or #getSignature()<span class="work">[Jay]</span> |
| </li> |
| |
| </ul> |
| <h4><img src="../images/adarrow.png" border="0" height="16" width="16" align="top" alt="arrow"> Permanent Items</h4> |
| <ul> |
| <li>bugzilla inbox tracking</li> |
| <li>bug fixing |
| (<a href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced;bug_status=RESOLVED;bug_status=VERIFIED;component=Core;resolution=FIXED;classification=Eclipse;product=JDT;target_milestone=3.6%20M6">fixed</a>) |
| (<a href="http://dev.eclipse.org/bugs/buglist.cgi?product=JDT&component=CORE&target_milestone=3.6+M6&namedcmd=Assigned">all</a>) |
| (<a href="http://dev.eclipse.org/bugs/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&product=JDT&component=CORE&target_milestone=3.6+M6">unresolved</a>) |
| (<a href="http://dev.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&product=JDT&component=CORE&target_milestone=3.6+M6">resolved</a>) |
| </li> |
| <li>watch performance tests</li> |
| </ul> |
| </td> |
| </tr> |
| <tr> |
| <td align="left" valign="top" colspan="2" width="100%" bgcolor="#595791"><font face="Arial,Helvetica"><font color="#FFFFFF"><a name="Milestone_Planning_M7"></a>Milestone M7 (2010-04-30) - FEATURE FREEZE</font></font></td> |
| </tr> |
| <tr> |
| <td width="100%"> |
| <h4><img src="../images/adarrow.png" border="0" height="16" width="16" align="top" alt="arrow"> General Items </h4> |
| <ul> |
| <li class="priority">[<a href="#2">2</a>] bug fixing <span class="work">[all]</span></li> |
| <li class="priority">[<a href="#3">3</a>] 3.6 planning <span class="work">[olivier]</span></li> |
| </ul> |
| <h4><img src="../images/adarrow.png" border="0" height="16" width="16" align="top" alt="arrow"> Bug fixes</h4> |
| <ul> |
| <li>Bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=59891">59891</a> - [formatter] improve lines wrapping in nested method calls <span class="work">[Frédéric]</span></li> |
| </ul> |
| <h4><img src="../images/adarrow.png" border="0" height="16" width="16" align="top" alt="arrow"> Permanent Items</h4> |
| <ul> |
| <li>bugzilla inbox tracking</li> |
| <li>bug fixing |
| (<a href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced;bug_status=RESOLVED;bug_status=VERIFIED;component=Core;resolution=FIXED;classification=Eclipse;product=JDT;target_milestone=3.6%20M7">fixed</a>) |
| (<a href="http://dev.eclipse.org/bugs/buglist.cgi?product=JDT&component=CORE&target_milestone=3.6+M6&namedcmd=Assigned">all</a>) |
| (<a href="http://dev.eclipse.org/bugs/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&product=JDT&component=CORE&target_milestone=3.6+M7">unresolved</a>) |
| (<a href="http://dev.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&product=JDT&component=CORE&target_milestone=3.6+M7">resolved</a>) |
| </li> |
| <li>watch performance tests</li> |
| </ul> |
| </td> |
| </tr> |
| <tr> |
| <td align="left" valign="top" colspan="2" width="100%" bgcolor="#595791"><font face="Arial,Helvetica"><font color="#FFFFFF">Bug Tracking</font></font></td> |
| </tr> |
| |
| <tr> |
| <td> |
| <ul> |
| <li><a href="https://bugs.eclipse.org/bugs/query.cgi">find a bug report</a></li> |
| <li><a href="https://bugs.eclipse.org/bugs/enter_bug.cgi?product=JDT">report a bug</a></li> |
| </ul> |
| </td> |
| </tr> |
| </table> |
| <table border="0" cellpadding="2" cellspacing="5" width="100%"><tbody><tr><td colspan="4" align="left" bgcolor="#595791" valign="top" width="100%"><font face="Arial,Helvetica"><font color="#ffffff">Legend |
| </font></font></td> |
| </tr> |
| <tr> |
| <td valign="middle"><img src="../images/progress.png" border="0" alt="progress"></td> |
| <td width="50%">item is under development.</td> |
| <td valign="top"><img src="../images/glass.png" border="0" alt="glass"></td> |
| <td width="50%">item is under investigation.</td> |
| </tr> |
| <tr> |
| <td valign="middle"><img src="../images/ok.png" border="0" alt="ok"></td> |
| <td width="50%">item is finished.</td> |
| <td valign="top">( )</td> |
| <td width="50%">item is time permitted.</td> |
| </tr> |
| <tr> |
| <td valign="middle"><font class="indexsub" color="#8080ff">[xyz]</font></td> |
| <td width="50%">item is deferred (>) from xyz or continues in xyz.</td> |
| <td valign="middle"><font class="indexsub"><img src="../images/new.png" border="0" alt="new"></font></td> |
| <td width="50%">new</td> |
| </tr> |
| </tbody> |
| </table> |
| |
| </body> |
| </html> |