Comment block removed by pretty printer
Brought to you by:
mikeatkinson,
seguin
Using JB9 and JRefactory V2.9.15
Selected Pretty Printer on the attached code sample
and the comment block before the abstract method
disappeared.
package
au.gov.defence.codex.itemmanagement.server.business;
public abstract class RefactorTest {
public RefactorTest() {
}
/**
*@param theImc The context we are in
*@param theFullVo an Item from which nnStatus is
to be derived
*@param theCurrentFullVo current value of item
*@return nnStatus a String being the appropriate nn
status as derived by this method
*/
abstract protected String deriveNnStatusCode(String
theImc, String theFullVo, String theCurrentFullVo);
}