blob: 8aeef7066a554a007e5b0961b2cd5ca5b58de573 [file] [log] [blame]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<title>JDT Core 3.7 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 $Date: 2012/10/17 10:08:12 $</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.7 for the JDT Core component as listed on the
<a href="http://www.eclipse.org/projects/project-plan.php?projectid=eclipse">Eclipse Project 3.7 Draft Plan</a>.
</p>
<p>
<strong><a name="1"></a>[1] Scaling up</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] Design for Extensibility</strong>.
Provide APIs for clients where needed and fix critical bugs.
</p>
<p>
<strong><a name="3"></a>[3] Ease of Use</strong>.
Make sure we run on the e4 compatibility layer and deliver new productivity features like TBD.
</p>
<p>
<strong><a name="4"></a>[4] Technology Trends</strong>.
Add support for Java 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.7 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>
<p>The deadline to get access to the specifications needed to implement this item for 3.7 is <strong>the end of M3</strong>.
If by the end of M3, we cannot have access to the specifications, this item will be completely dropped from 3.7 and postponed
to a later release.</p>
<ul>
<li class="priority">implement the jsr 308 (Annotations on type) - Deferred to future release as this jsr has been moved for inclusion in JDK 8</li>
<li class="priority">implement the jsr 294 (module support) - Deferred to future release as this jsr has been moved for inclusion in JDK 8</li>
<li class="priority">implement the jsr 292 (invokedynamic support) (depending on getting access to the specification)</li>
<li class="priority">implement proposals for the coin project (depending on getting access to the specification)</li>
<li class="priority">implement proposals for the lambda project - Deferred to future release as this jsr has been moved for inclusion in JDK 8</li>
<li class="priority">... depending on what is included in Java 7</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>
<li class="priority"><img src="../images/progress.png" border="0" alt="progress"/> improve code coverage</li>
<li>Make APT more scalable. This might require changes in DOM/AST binding story.</li>
<li>Improve performances for classpath resolution</li>
</ul>
</li>
<li><h4>General Items</h4>
<ul>
<li class="priority"><img src="../images/progress.png" border="0" alt="progress"/> 3.6.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>
<li>Improve Javadoc support inside JDT (support proxies, different doc format): <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=313644">313644</a>, <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=136091">136091</a></li>
<li>Add encoding support for source attachment: <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=303511">303511</a></li>
<li><img src="../images/ok.png" border="0" alt="ok"/> Improve support of Java 5 code being referenced from a 1.4 project (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=305259">305259</a>)</li>
<li>Improve AST rewrite to better handle changes into changes (bugs <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=308886">308886</a> and <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=319448">319448</a>)</li>
<li>Add regexp to Java search (bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=36897">36897</a>)</li>
<li>A couple of new enhancements in the code formatter</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 (2010-08-06)</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.6.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.7 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://dev.eclipse.org/bugs/buglist.cgi?product=JDT&amp;component=CORE&amp;target_milestone=3.7+M1&amp;resolution=FIXED">fixed</a>)
(<a href="http://dev.eclipse.org/bugs/buglist.cgi?product=JDT&amp;component=CORE&amp;target_milestone=3.7+M1&amp;namedcmd=Assigned">all</a>)
(<a href="http://dev.eclipse.org/bugs/buglist.cgi?bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED&amp;product=JDT&amp;component=CORE&amp;target_milestone=3.7+M1">unresolved</a>)
(<a href="http://dev.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&amp;bug_status=VERIFIED&amp;bug_status=CLOSED&amp;product=JDT&amp;component=CORE&amp;target_milestone=3.7+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 (2010-09-17)</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.6.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.7 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://dev.eclipse.org/bugs/buglist.cgi?product=JDT&amp;component=CORE&amp;target_milestone=3.7+M2&amp;resolution=FIXED">fixed</a>)
(<a href="http://dev.eclipse.org/bugs/buglist.cgi?product=JDT&amp;component=CORE&amp;target_milestone=3.7+M2&amp;namedcmd=Assigned">all</a>)
(<a href="http://dev.eclipse.org/bugs/buglist.cgi?bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED&amp;product=JDT&amp;component=CORE&amp;target_milestone=3.7+M2">unresolved</a>)
(<a href="http://dev.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&amp;bug_status=VERIFIED&amp;bug_status=CLOSED&amp;product=JDT&amp;component=CORE&amp;target_milestone=3.7+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 (2010-10-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.6.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.7 planning <span class="work">[olivier]</span></li>
<li><img src="../images/progress.png" border="0" alt="in progress"/> Make APT more scalable. This might require changes in DOM/AST binding story.<span class="work">[satyam]</span></li>
<li><img src="../images/progress.png" border="0" alt="in progress"/> Improve Javadoc support inside JDT (support proxies, different doc format): <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=313644">313644</a>, <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=136091">136091</a><span class="work">[ayushman]</span></li>
<li><img src="../images/ok.png" border="0" alt="ok"/> Add encoding support for source attachment: <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=303511">303511</a><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="http://dev.eclipse.org/bugs/buglist.cgi?product=JDT&amp;component=CORE&amp;target_milestone=3.7+M3&amp;resolution=FIXED">fixed</a>)
(<a href="http://dev.eclipse.org/bugs/buglist.cgi?product=JDT&amp;component=CORE&amp;target_milestone=3.7+M3&amp;namedcmd=Assigned">all</a>)
(<a href="http://dev.eclipse.org/bugs/buglist.cgi?bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED&amp;product=JDT&amp;component=CORE&amp;target_milestone=3.7+M3">unresolved</a>)
(<a href="http://dev.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&amp;bug_status=VERIFIED&amp;bug_status=CLOSED&amp;product=JDT&amp;component=CORE&amp;target_milestone=3.7+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 (2010-12-10)</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/progress.png" border="0" alt="in progress"/> [<a href="#2">2</a>] 3.6.2 maintenance work <span class="work">[all]</span></li>
<li class="priority"><img src="../images/progress.png" border="0" alt="in progress"/> [<a href="#2">2</a>] bug fixing <span class="work">[all]</span></li>
<li class="priority"><img src="../images/progress.png" border="0" alt="in progress"/> [<a href="#3">3</a>] 3.7 planning <span class="work">[olivier]</span></li>
<li><font class="indexsub" color="#8080ff">[M5]</font> Make APT more scalable. This might require changes in DOM/AST binding story.<span class="work">[Satyam]</span></li>
<li><font class="indexsub" color="#8080ff">[M5]</font> Improve Javadoc support inside JDT (support proxies, different doc format): <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=313644">313644</a>, <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=136091">136091</a><span class="work">[Ayushman]</span></li>
<li><font class="indexsub" color="#8080ff">[M5]</font> Compiler option to ignore unavoidable type safety problems due to raw APIs: <a href"https://bugs.eclipse.org/bugs/show_bug.cgi?id=322817">322817</a>.<span class="work">[Srikanth]</span></li>
<li><font class="indexsub" color="#8080ff">[M5]</font> Fix open issues about generic support in the compiler. <span class="work">[srikanth]</span></li>
<li><font class="indexsub" color="#8080ff">[M5]</font> Add new compiler diagnostic for method that could be defined as static: <a href"https://bugs.eclipse.org/bugs/show_bug.cgi?id=318682">318682</a>.<span class="work">[Ayushman]</span></li>
<li><font class="indexsub" color="#8080ff">[M5]</font> Add new compiler diagnostic for null field reference: <a href"https://bugs.eclipse.org/bugs/show_bug.cgi?id=247564">247564</a>.<span class="work">[Ayushman]</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://dev.eclipse.org/bugs/buglist.cgi?product=JDT&amp;component=CORE&amp;target_milestone=3.7+M4&amp;resolution=FIXED">fixed</a>)
(<a href="http://dev.eclipse.org/bugs/buglist.cgi?product=JDT&amp;component=CORE&amp;target_milestone=3.7+M4&amp;namedcmd=Assigned">all</a>)
(<a href="http://dev.eclipse.org/bugs/buglist.cgi?bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED&amp;product=JDT&amp;component=CORE&amp;target_milestone=3.7+M4">unresolved</a>)
(<a href="http://dev.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&amp;bug_status=VERIFIED&amp;bug_status=CLOSED&amp;product=JDT&amp;component=CORE&amp;target_milestone=3.7+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 (2011-01-28)</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/progress.png" border="0" alt="in progress"/> [<a href="#2">2</a>] 3.6.2 maintenance work <span class="work">[all]</span></li>
<li class="priority"><img src="../images/progress.png" border="0" alt="in progress"/> [<a href="#2">2</a>] bug fixing <span class="work">[all]</span></li>
<li class="priority"><img src="../images/progress.png" border="0" alt="in progress"/> [<a href="#3">3</a>] 3.7 planning <span class="work">[olivier]</span></li>
<li><img src="../images/ok.png" border="0" alt="in progress"/> Make APT more scalable. This might require changes in DOM/AST binding story.<span class="work">[Satyam]</span></li>
<li><img src="../images/ok.png" border="0" alt="in progress"/> Improve Javadoc support inside JDT (support proxies, different doc format): <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=313644">313644</a>, <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=136091">136091</a><span class="work">[Ayushman]</span></li>
<li><img src="../images/ok.png" border="0" alt="in progress"/> Compiler option to ignore unavoidable type safety problems due to raw APIs: <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=322817">322817</a>.<span class="work">[Srikanth]</span></li>
<li><img src="../images/ok.png" border="0" alt="in progress"/> Add new compiler diagnostic for method that could be defined as static: <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=318682">318682</a>.<span class="work">[Ayushman]</span></li>
<li><img src="../images/progress.png" border="0" alt="in progress"/> Add new compiler diagnostic for null field reference: <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=247564">247564</a>.<span class="work">[Ayushman]</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://dev.eclipse.org/bugs/buglist.cgi?product=JDT&amp;component=CORE&amp;target_milestone=3.7+M5&amp;resolution=FIXED">fixed</a>)
(<a href="http://dev.eclipse.org/bugs/buglist.cgi?product=JDT&amp;component=CORE&amp;target_milestone=3.7+M5&amp;namedcmd=Assigned">all</a>)
(<a href="http://dev.eclipse.org/bugs/buglist.cgi?bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED&amp;product=JDT&amp;component=CORE&amp;target_milestone=3.7+M5">unresolved</a>)
(<a href="http://dev.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&amp;bug_status=VERIFIED&amp;bug_status=CLOSED&amp;product=JDT&amp;component=CORE&amp;target_milestone=3.7+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 (2011-03-11) - API 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"/> Specific Items </h4>
<ul>
<li><img src="../images/progress.png" border="0" alt="in progress"/> [<a href="#4">4</a>] Java 7: Working on jsr 334 implementation<br>
See this wiki page to follow up the work done: <a href="http://wiki.eclipse.org/JDT_Core/Java7">Java 7</a></li>
<li><img src="../images/progress.png" border="0" alt="in progress"/> Fix open issues about generic support in the compiler. <span class="work">[srikanth]</span></li>
<li><img src="../images/progress.png" border="0" alt="in progress"/> Add new compiler diagnostic for null field reference: <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=247564">247564</a>.<span class="work">[Ayushman]</span></li>
</ul>
<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/progress.png" border="0" alt="in progress"/> [<a href="#2">2</a>] 3.6.2 maintenance work <span class="work">[all]</span></li>
<li class="priority"><img src="../images/progress.png" border="0" alt="in progress"/> [<a href="#2">2</a>] bug fixing <span class="work">[all]</span></li>
<li class="priority"><img src="../images/progress.png" border="0" alt="in progress"/> [<a href="#3">3</a>] 3.7 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://dev.eclipse.org/bugs/buglist.cgi?product=JDT&amp;component=CORE&amp;target_milestone=3.7+M6&amp;resolution=FIXED">fixed</a>)
(<a href="http://dev.eclipse.org/bugs/buglist.cgi?product=JDT&amp;component=CORE&amp;target_milestone=3.7+M6&amp;namedcmd=Assigned">all</a>)
(<a href="http://dev.eclipse.org/bugs/buglist.cgi?bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED&amp;product=JDT&amp;component=CORE&amp;target_milestone=3.7+M6">unresolved</a>)
(<a href="http://dev.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&amp;bug_status=VERIFIED&amp;bug_status=CLOSED&amp;product=JDT&amp;component=CORE&amp;target_milestone=3.7+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 (2011-04-29) - 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"/> Specific Items </h4>
<ul>
<li><img src="../images/progress.png" border="0" alt="in progress"/> [<a href="#4">4</a>] Java 7: Working on jsr 334 implementation<br>
See this wiki page to follow up the work done: <a href="http://wiki.eclipse.org/JDT_Core/Java7">Java 7</a></li>
<li><img src="../images/progress.png" border="0" alt="in progress"/> Fix open issues about generic support in the compiler. <span class="work">[srikanth]</span></li>
</ul>
<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/progress.png" border="0" alt="in progress"/> [<a href="#2">2</a>] bug fixing <span class="work">[all]</span></li>
<li class="priority"><img src="../images/progress.png" border="0" alt="in progress"/> [<a href="#2">1</a>] check polish items on this <a href="http://wiki.eclipse.org/Polish3.7">page</a><span class="work">[all]</span></li>
<li class="priority"><img src="../images/progress.png" border="0" alt="in progress"/> [<a href="#2">1</a>] check performance issues from this <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=313891">bug report</a><span class="work">[all]</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://dev.eclipse.org/bugs/buglist.cgi?product=JDT&amp;component=CORE&amp;target_milestone=3.7+M7&amp;resolution=FIXED">fixed</a>)
(<a href="http://dev.eclipse.org/bugs/buglist.cgi?product=JDT&amp;component=CORE&amp;target_milestone=3.7+M7&amp;namedcmd=Assigned">all</a>)
(<a href="http://dev.eclipse.org/bugs/buglist.cgi?bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED&amp;product=JDT&amp;component=CORE&amp;target_milestone=3.7+M7">unresolved</a>)
(<a href="http://dev.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&amp;bug_status=VERIFIED&amp;bug_status=CLOSED&amp;product=JDT&amp;component=CORE&amp;target_milestone=3.7+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"><a name="RC1"></a>Milestone RC1 (2011-05-12)</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"/> Test day </h4>
<ul>
<li>Check the test plan for <a href="RC0_Test_Plan.html">RC1</a></li>
</ul>
<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/progress.png" border="0" alt="in progress"/> [<a href="#2">2</a>] bug fixing <span class="work">[all]</span></li>
<li class="priority"><img src="../images/progress.png" border="0" alt="in progress"/> [<a href="#2">1</a>] check polish items on this <a href="http://wiki.eclipse.org/Polish3.7">page</a><span class="work">[all]</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://dev.eclipse.org/bugs/buglist.cgi?product=JDT&amp;component=CORE&amp;target_milestone=3.7+RC1&amp;resolution=FIXED">fixed</a>)
(<a href="http://dev.eclipse.org/bugs/buglist.cgi?product=JDT&amp;component=CORE&amp;target_milestone=3.7+RC1&amp;namedcmd=Assigned">all</a>)
(<a href="http://dev.eclipse.org/bugs/buglist.cgi?bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED&amp;product=JDT&amp;component=CORE&amp;target_milestone=3.7+RC1">unresolved</a>)
(<a href="http://dev.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&amp;bug_status=VERIFIED&amp;bug_status=CLOSED&amp;product=JDT&amp;component=CORE&amp;target_milestone=3.7+RC1">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 (&gt;) 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>