blob: cdba9236332afc4008a59308451c047684255ef5 [file] [log] [blame]
<!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.5 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/01/09</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.5 for the JDT Core component as listed on the
<a href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_5.html">Eclipse Project 3.5 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.
</p>
</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">Milestone M1 (2008-08-08)</font></font></td>
</tr>
<tr>
<td WIDTH="100%">
<h4><img src="http://www.eclipse.org/images/Adarrow.gif" border="0" height="16" width="16" align="top"> Compiler </h4>
<ul>
<li class="priority"><img src="../images/ok.gif" border="0" height="10" width="10"> [<a href="#3">3</a>] warning to detect comparisons between identical expressions (bug 115814) <span class="work">[philippe]</span></li>
</ul>
<h4><img src="http://www.eclipse.org/images/Adarrow.gif" border="0" height="16" width="16" align="top"> General Items </h4>
<ul>
<li class="priority"><img src="../images/ok.gif" border="0" height="10" width="10"> [<a href="#2">2</a>] 3.4.1 maintenance work <span class="work">[all]</span></li>
<li class="priority"><img src="../images/ok.gif" border="0" height="10" width="10"> [<a href="#2">2</a>] bug fixing <span class="work">[all]</span></li>
</ul>
<h4><img src="http://www.eclipse.org/images/Adarrow.gif" border="0" height="16" width="16" align="top"> Permanent Items</h4>
<ul>
<li>bugzilla inbox tracking</li>
<li>bug fixing
(<a href="http://bugs.eclipse.org/bugs/buglist.cgi?product=JDT&amp;component=Core&amp;target_milestone=3.5+M1&amp;resolution=FIXED">fixed</a>)
(<a href="http://dev.eclipse.org/bugs/buglist.cgi?product=JDT&amp;component=CORE&amp;target_milestone=3.5+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.5+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.5+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">Milestone M2 (2008-09-19) - Planning</font></font></td>
</tr>
<tr>
<td WIDTH="100%">
<h4><img src="http://www.eclipse.org/images/Adarrow.gif" border="0" height="16" width="16" align="top"> Compiler </h4>
<ul>
<li class="priority"><img src="../images/ok.gif" border="0" height="10" width="10"> [<a href="#3">3</a>] warning to signal absence of synchronized modifier when overriding a synchronized method (bug 239066) <span class="work">[philippe]</span></li>
<li class="priority"><img src="../images/ok.gif" border="0" height="10" width="10"> [<a href="#3">3</a>] marker comment ($FALL-THROUGH$) for silencing compiler diagnosis for switch case falling through next case (bug 245257) <span class="work">[philippe]</span></li>
</ul>
<h4><img src="http://www.eclipse.org/images/Adarrow.gif" border="0" height="16" width="16" align="top"> General Items </h4>
<ul>
<li class="priority"><img src="../images/ok.gif" border="0" height="10" width="10"> [<a href="#2">2</a>] 3.4.1 maintenance work <span class="work">[all]</span></li>
<li class="priority"><img src="../images/ok.gif" border="0" height="10" width="10"> [<a href="#2">2</a>] bug fixing <span class="work">[all]</span></li>
<li class="priority"><img src="../images/ok.gif" border="0" height="10" width="10"> [<a href="#3">3</a>] 3.5 planning <span class="work">[jerome, philippe]</span></li>
</ul>
<h4><img src="http://www.eclipse.org/images/Adarrow.gif" border="0" height="16" width="16" align="top"> Permanent Items</h4>
<ul>
<li>bugzilla inbox tracking</li>
<li>bug fixing
(<a href="http://bugs.eclipse.org/bugs/buglist.cgi?product=JDT&amp;component=Core&amp;target_milestone=3.5+M2&amp;resolution=FIXED">fixed</a>)
(<a href="http://dev.eclipse.org/bugs/buglist.cgi?product=JDT&amp;component=CORE&amp;target_milestone=3.5+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.5+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.5+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">Milestone M3 (2008-10-31)</font></font></td>
</tr>
<tr>
<td WIDTH="100%">
<h4><img src="http://www.eclipse.org/images/Adarrow.gif" border="0" height="16" width="16" align="top"> Build path</h4>
<ul>
<li class="priority"><img src="../images/ok.gif" border="0" height="10" width="10"> [<a href="#3">3</a>] chained jars on the buildpath (bug 198572) <span class="work">[jerome]</span></li>
<li class="priority"><img src="../images/ok.gif" border="0" height="10" width="10"> [<a href="#3">3</a>] support '..' in classpath entries (bug 57732) <span class="work">[jerome]</span></li>
</ul>
<h4><img src="http://www.eclipse.org/images/Adarrow.gif" border="0" height="16" width="16" align="top"> Code assist</h4>
<ul>
<li class="priority"><img src="../images/ok.gif" border="0" height="10" width="10"> [<a href="#3">3</a>] add cancelation support for code completion (bug 247941) <span class="work">[david]</span></li>
<li class="priority"><img src="../images/ok.gif" border="0" height="10" width="10"> [<a href="#3">3</a>] navigate to classes in workspace even if not on classpath (bug 232880) <span class="work">[david]</span></li>
</ul>
<h4><img src="http://www.eclipse.org/images/Adarrow.gif" border="0" height="16" width="16" align="top"> DOM </h4>
<ul>
<li class="priority"><img src="../images/ok.gif" border="0" height="10" width="10"> [<a href="#2">2</a>] make NodeFinder API (bug 53024) <span class="work">[olivier]</span></li>
</ul>
<h4><img src="http://www.eclipse.org/images/Adarrow.gif" border="0" height="16" width="16" align="top"> Model </h4>
<ul>
<li class="priority"><img src="../images/ok.gif" border="0" height="10" width="10"> [<a href="#2">2</a>] improve NamingConventions (bug 38111, bug 85946) <span class="work">[david]</span></li>
</ul>
<h4><img src="http://www.eclipse.org/images/Adarrow.gif" border="0" height="16" width="16" align="top"> Performance</h4>
<ul>
<li>[<a href="#1">1</a>] identify big performance issues that cannot be handled in M7 <span class="work">[jerome, frederic]</span></li>
</ul>
<h4><img src="http://www.eclipse.org/images/Adarrow.gif" border="0" height="16" width="16" align="top"> Permanent Items</h4>
<ul>
<li>bugzilla inbox tracking</li>
<li>bug fixing
(<a href="http://bugs.eclipse.org/bugs/buglist.cgi?product=JDT&amp;component=Core&amp;target_milestone=3.5+M3&amp;resolution=FIXED">fixed</a>)
(<a href="http://dev.eclipse.org/bugs/buglist.cgi?product=JDT&amp;component=CORE&amp;target_milestone=3.5+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.5+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.5+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">Milestone M4 (2008-12-12)</font></font></td>
</tr>
<tr>
<td WIDTH="100%">
<a name="current-milestone"></a>
<h4><img src="http://www.eclipse.org/images/Adarrow.gif" border="0" height="16" width="16" align="top"> Builder </h4>
<ul>
<li class="priority"><img src="../images/ok.gif" border="0" height="10" width="10"> [<a href="#1">1</a>] improve performance when adding a new top-level package (bug 207093) <span class="work">[kent]</span></li>
</ul>
<h4><img src="http://www.eclipse.org/images/Adarrow.gif" border="0" height="16" width="16" align="top"> Compiler </h4>
<ul>
<li class="priority"><img src="../images/ok.gif" border="0" height="10" width="10"> [<a href="#2">2</a>] warning to signal presence of dead code (bug 48399) <span class="work">[philippe]</span></li>
</ul>
<h4><img src="http://www.eclipse.org/images/Adarrow.gif" border="0" height="16" width="16" align="top"> Formatter</h4>
<ul>
<li><img src="../images/ok.gif" border="0" height="10" width="10"> [<a href="#3">3</a>] formatter should preserve existing line delimiters (bug 198074) <span class="work">[frederic]</span></li>
</ul>
<h4><img src="http://www.eclipse.org/images/Adarrow.gif" border="0" height="16" width="16" align="top"> Java model</h4>
<ul>
<li><img src="../images/ok.gif" border="0" height="10" width="10"> [<a href="#1">1</a>] memory optimizations (bug 227986, bug 257869) <span class="work">[jerome]</span></li>
</ul>
<h4><img src="http://www.eclipse.org/images/Adarrow.gif" border="0" height="16" width="16" align="top"> Permanent Items</h4>
<ul>
<li>bugzilla inbox tracking</li>
<li>bug fixing
(<a href="http://bugs.eclipse.org/bugs/buglist.cgi?product=JDT&amp;component=Core&amp;target_milestone=3.5+M4&amp;resolution=FIXED">fixed</a>)
(<a href="http://dev.eclipse.org/bugs/buglist.cgi?product=JDT&amp;component=CORE&amp;target_milestone=3.5+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.5+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.5+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">Milestone M5 (2009-01-30) - Major Feature Work Completed</font></font></td>
</tr>
<tr>
<td WIDTH="100%">
<h4><img src="http://www.eclipse.org/images/Adarrow.gif" border="0" height="16" width="16" align="top"> Code assist</h4>
<ul>
<li class="priority"><img src="../images/ok.gif" border="0" height="10" width="10"> [<a href="#3">3</a>] constructor completion (bug 6930) <span class="work">[david]</span></li>
</ul>
<h4><img src="http://www.eclipse.org/images/Adarrow.gif" border="0" height="16" width="16" align="top"> Compiler </h4>
<ul>
<li class="priority">[<a href="#2">2</a>] cleanup lookup semantics (get rid of tiebreak method, add a pointer to overriden method etc...) <span class="work">[kent]</span></li>
</ul>
<h4><img src="http://www.eclipse.org/images/Adarrow.gif" border="0" height="16" width="16" align="top"> Search</h4>
<ul>
<li class="priority">[<a href="#2">2</a>] SearchPattern: provide way to get the matching regions (bug 218605) <span class="work">[frederic]</span></li>
</ul>
<h4><img src="http://www.eclipse.org/images/Adarrow.gif" border="0" height="16" width="16" align="top"> General Items </h4>
<ul>
<li class="priority"><img src="../images/progress.gif" border="0" height="5" width="14" align="absmiddle"> [<a href="#2">2</a>] (investigate) ability to provide preprocessed source code to compiler (bug 116143) <span class="work">[kent]</span></li>
</ul>
<h4><img src="http://www.eclipse.org/images/Adarrow.gif" border="0" height="16" width="16" align="top"> Permanent Items</h4>
<ul>
<li>bugzilla inbox tracking</li>
<li>bug fixing
(<a href="http://bugs.eclipse.org/bugs/buglist.cgi?product=JDT&amp;component=Core&amp;target_milestone=3.5+M5&amp;resolution=FIXED">fixed</a>)
(<a href="http://dev.eclipse.org/bugs/buglist.cgi?product=JDT&amp;component=CORE&amp;target_milestone=3.5+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.5+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.5+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">Milestone M6 (2009-03-13) - API Freeze</font></font></td>
</tr>
<tr>
<td WIDTH="100%">
<h4><img src="http://www.eclipse.org/images/Adarrow.gif" border="0" height="16" width="16" align="top"> Tests </h4>
<ul>
<li class="priority"> [<a href="#2">2</a>] improve code coverage in regression tests <span class="work">[all]</span></li>
</ul>
<h4><img src="http://www.eclipse.org/images/Adarrow.gif" border="0" height="16" width="16" align="top"> Permanent Items</h4>
<ul>
<li>bugzilla inbox tracking</li>
<li>bug fixing
(<a href="http://bugs.eclipse.org/bugs/buglist.cgi?product=JDT&amp;component=Core&amp;target_milestone=3.5+M6&amp;resolution=FIXED">fixed</a>)
(<a href="http://dev.eclipse.org/bugs/buglist.cgi?product=JDT&amp;component=CORE&amp;target_milestone=3.5+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.5+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.5+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">Milestone M7 (2009-05-01) - Feature Freeze, Focus on Performance and Polish</font></font></td>
</tr>
<tr>
<td WIDTH="100%">
<h4><img src="http://www.eclipse.org/images/Adarrow.gif" border="0" height="16" width="16" align="top"> Performance </h4>
<ul>
<li class="priority"> [<a href="#1">1</a>] investigate and improve performance accross JDT Core <span class="work">[all]</span></li>
</ul>
<h4><img src="http://www.eclipse.org/images/Adarrow.gif" border="0" height="16" width="16" align="top"> Permanent Items</h4>
<ul>
<li>bugzilla inbox tracking</li>
<li>bug fixing
(<a href="http://bugs.eclipse.org/bugs/buglist.cgi?product=JDT&amp;component=Core&amp;target_milestone=3.5+M7&amp;resolution=FIXED">fixed</a>)
(<a href="http://dev.eclipse.org/bugs/buglist.cgi?product=JDT&amp;component=CORE&amp;target_milestone=3.5+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.5+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.5+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/buglist.cgi?bug_file_loc=&bug_file_loc_type=allwordssubstr&bug_id=&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bugidtype=include&chfieldfrom=&chfieldto=Now&chfieldvalue=&classification=Eclipse&component=Core&email1=&email2=&emailtype1=substring&emailtype2=substring&field-1-0-0=classification&field-1-1-0=product&field-1-2-0=component&field-1-3-0=bug_status&field0-0-0=noop&keywords=&keywords_type=allwords&long_desc=&long_desc_type=allwordssubstr&product=JDT&query_format=advanced&remaction=&short_desc=&short_desc_type=allwordssubstr&status_whiteboard=&status_whiteboard_type=allwordssubstr&type-1-0-0=anyexact&type-1-1-0=anyexact&type-1-2-0=anyexact&type-1-3-0=anyexact&type0-0-0=noop&value-1-0-0=Eclipse&value-1-1-0=JDT&value-1-2-0=Core&value-1-3-0=UNCONFIRMED%2CNEW%2CASSIGNED%2CREOPENED&value0-0-0=&votes=&order=bugs.delta_ts%2Cbugs.short_desc%2Cbugs.target_milestone%2Cbugs.delta_ts%2Cbugs.delta_ts%2Cbugs.priority%2Cbugs.delta_ts%2Cbugs.priority%2Cbugs.bug_severity&query_based_on=">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="center"><img src="../images/progress.gif" border="0" height="5" width="14" align="absmiddle"></td>
<td width="50%">item is under development.</td>
<td valign="top"><img src="../images/glass.gif" border="0" height="10" width="10"></td>
<td width="50%">item is under investigation.</td>
</tr>
<tr>
<td valign="center"><img src="../images/ok.gif" border="0" height="10" width="10"></td>
<td width="50%">item is finished.</td>
<td valign="top">( )</td>
<td width="50%">item is time permitted.</td>
</tr>
<tr>
<td valign="center"><font class="indexsub" color="#8080ff">[xyz]</font></td>
<td width="50%">item is deferred (&gt;) from xyz or continues in xyz.</td>
<td valign="center"><font class="indexsub"><img src="../images/new.gif" border="0"></font></td>
<td width="50%">new</td>
</tr>
</tbody>
</table>
<br>&nbsp;
</body>
</html>