Sophie

Sophie

distrib > Mandriva > 2007.0 > i586 > media > contrib-release > by-pkgid > 081d536d372c5b499a273e5b6a4ec5a1 > files > 50

jrefactory-2.8.9-4.2mdv2007.0.i586.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
  <meta http-equiv="Content-Type" content="text/html;CHARSET=iso-8859-1">
  <title>Software::JRefactory - Roadmap</title>
</head>
<body>
<table border="0">
  <tbody>
    <tr>
      <td width="150" align="left" valign="top" rowspan="3" bgcolor="#dddddd"> <img src="JRefactory.jpg" alt="Author:  Mike Atkinson"> <a href="chrissoft.html">Software</a> <br>
      <ul>
        <li> <a href="cspretty.html">Pretty Printer</a> <br>
        </li>
        <li> JRefactory<br>
        </li>
        <li> <a href="csprint.html">Printing</a> <br>
        </li>
        <li> <a href="cselixirext.html">Elixir Extensions</a> <br>
        </li>
        <li> <a href="cslineno.html">Line Numbering</a> <br>
        </li>
        <li> <a href="csmetrics.html">Metrics</a> <br>
        </li>
        <li> <a href="csstub.html">Stub Generator</a> <br>
        </li>
        <li> <a href="csdevutil.html">Dev Utilities</a> <br>
        </li>
        <li> Roadmap <br>
        </li>
        <li> <a href="csrtodo.html">Requested Features</a> <br>
        </li>
      </ul>
      <a href="csr-releasenotes.html">Release Notes</a> <br>
      <a href="chrisdown.html"><b>Download</b></a> <br>
      <b><a href="authors.html">Contributors</a></b> <br>
      </td>
      <td width="35" align="left" valign="top">
      <p><a href="csdevutil.html"><img src="left.gif" width="30" height="30" align="bottom" alt="Previous Page" border="2"></a> </p>
      </td>
      <td align="center">
      <h1 align="center">Software::JRefactory - Roadmap</h1>
      </td>
      <td width="35" align="right" valign="top">
      <p align="right"><a href="csrtodo.html"><img src="right.gif" width="30" height="30" align="bottom" alt="Next Page" border="2"></a> </p>
      </td>
    </tr>
    <tr>
      <td colspan="3">
      <ul>
        <li><span style="font-weight: bold; font-size:130%; color:red;">Version 2.8.x</span>
          <ul style="margin-left: 20px;">
            <li>Add coding standards checking, perhaps integrate <a href="http://sourceforge.net/projects/pmd/">PMD</a>, this should be fairly easy as it also uses a vistor architecture based on JavaCC.
              <div style="margin-left: 40px;">
                <p><small>After coding standards checking has been added it will then be possible to implement automatic capitalisation of "public final static" (i.e. constants). It will also be possible to check for immutable classes and alter the source code to include comments to that effect.</small></p>
                <p><small>It should be possible to mark each violation of the coding standard rules as to whether they are known to be O.K. (rules are meant to be broken) together with an explanation of why the violation is OK. Such marke violations are then not reported again (unless asked for).</small></p>
              </div>
            </li>
            <li>Add ability to manage multiple projects (different directory trees).
              <div style="margin-left: 40px;">
                <p><small>There should be a set of default settings, each project will have settings based on the default, with only the changes in the project settings.</small></p>
                <p><small>It should also be possible to have a central (group wide) set of pretty.settings that enforce standards for a group project.</small></p>
              </div>
            </li>
            <li>Add parsing of .class files using reflection..
              <div style="margin-left: 40px;">
                <p><small>The source for libraries is not always available, but the jar files always will be.</small></p>
                <p><small>There should be the ability to parse the jar file on demand, this should make the JRefactory startup quicker and enable dynamic updating of the libraries.</small></p>
                <p><small>There may be manly libraries present, so options to manipulate the classpath should be included. The main JRefactory pane should be changed to a tree table, with one branch of the tree (i.e. one table) for each library. - delayed until 2.9.x</small></p>
                <p><small>Different projects should use their own classpath and table.</small></p>
              </div>
            </li>
            <li>(Pretty Printer) Continue adding requested features.
              <div style="margin-left: 40px;">
                <p><small>Add support for character encoding formats other than ASCII.</small></p>
                <p><small>Fix obscure parsing problems.</small></p>
                <p><small>Add setting to remove optional ";" and "," if they occur.</small> </p>
              </div>
            </li>
            <li>(Code Checking) Add cut and paste detection ( imported from PMD)</li>
            <li>(Code Checking) Add an Abstract Syntax Tree viewer and XPath checker (imported from PMD with heavy modifications)</li>
            <li>(Code Checking) Add bug finding (now uses a slightly modified version of findbugs-0.6.6 ( http://www.cs.umd.edu/~pugh/java/bugs/ ).</li>
            <li>(Refactoring) Start fixing bugs.</li>
            <li>(Parser) Add ability to listen for DocumentEvents and update the parse tree on the fly (by parsing the entire file).</li>
            <li>(Parser) Optionally continue to parse after the first error, building up a list of errors, rather than just throwing an exception.</li>
          </ul>
          <br>
        </li>
        <li><span style="font-weight: bold; font-size:130%; color:red;">Version 2.9.x</span>
          <p style="margin-left: 40px; font-weight: bold;">This is intended to mainly be a bug-fix version. There plenty of things that need to be corrected and tidied up in the User Interface. There is also the start of "eating my own dogfood", using JRefactory to pretty print, and apply coding standards to the JRefactory project.</p>
          <p style="margin-left: 40px; font-weight: bold;">As part of this I'll start commenting the code more fully, it will be a long job and I don't expect it to be completed until Version 3.0.</p>
          <ul style="margin-left: 20px;">
            <li>Split into main library and subsidery libraries for each supported IDE. - jEdit library split off for 2.8.x release</span><br>
            </li>
            <li>Better support for IDEs (JEdit, Netbeans, ?)</li>
            <li>(Pretty Printer) Import statements - remove unused, change between package (.*) and individual imports, keep list of packages which should be package imports (normally java.lang, but also maybe java.io, java.util).</li>
            <li>(Refactoring) Continue adding requested features.</li>
            <li>(Metrics) Better metrics, try to include the full range of metrics and output them formatted with HTML, XML, etc.</li>
            <li style="color: rgb(0, 0, 0);">The great remaing project - rename "org.acm.seguin" to "net.sourceforge"</li>
            <li style="color: rgb(0, 0, 0);">(Refactoring) make the package selector window a tree view, add option to hide JDK packages.</li>
            <li style="color: rgb(0, 0, 0);">Better integration of the various tools.<br>
            </li>
            <li style="color: rgb(0, 0, 0);">It is intended that this will be released soon after JDK 1.5 beta is released (so the number of changes depends on how long before this comes out).</li>
          </ul>
        </li>
        <br>
        <li><span style="font-weight: bold; font-size:130%; color:red;">Version 3.0.x</span>
          <p style="margin-left: 40px; font-weight: bold;">This is intended to be a long-lived version with a fixed interface between the various tools and the supported IDEs.</p>
          <ul style="margin-left: 20px;">
            <li>Full support for JDK 1.5 - this includes refactoring and UML for all the new JDK 1.5 features</li>
            <ul>
              <li>Attributes</li>
              <li>Generic data types</li>
              <li>Enumerations</li>
            </ul>
            <li>New configuration utility (based on JavaStyle) - now put in 2.8.x as so many changes were required to support multiple projects..</li>
            <li>(Refactoring) Refactoring generic classes</li>
            <li>(Parser)&nbsp; Add ability to parse only the portions of the source affected by a DocumentEvent.</li>
            <li>(Parser) Code completion, predict rest of line (block) from recent input and display options to user.</li>
            <li>It is intended that this will be released soon after JDK 1.5 rc1 is released.</li>
          </ul>
        </li>
        <br>
        <li><span style="font-weight:bold; font-size:130%; color:red;">Version 3.1.x</span>
          <p style="margin-left:40px; font-weight:bold;">This is intended as bug-fix verion.</p>
        </li>
        <br>
      </ul>
      </td>
    </tr>
    <tr>
      <td width="35"><a href="csdevutil.html"><img src="left.gif" width="30" height="30" align="bottom" alt="Previous Page" border="2"></a></td>
      <td align="center">
      <p align="center"><font size="2" color="#aaaaaa">Last Modified: October 7, 2003</font> </p>
      </td>
      <td width="35" align="right">
      <p align="right"><a href="csrtodo.html"><img src="right.gif" width="30" height="30" align="bottom" alt="Previous Page" border="2"></a>
      </p>
      </td>
    </tr>
  </tbody>
</table>
</body>
</html>