]
Xavier Coulon updated JBIDE-17735:
----------------------------------
Sprint: Sprint to Beta3 Release
JAX-RS Application wizard: double comments in generated class
-------------------------------------------------------------
Key: JBIDE-17735
URL:
https://issues.jboss.org/browse/JBIDE-17735
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: webservices
Affects Versions: 4.2.0.Beta2
Reporter: Radoslav RĂ¡bara
Assignee: Xavier Coulon
Fix For: 4.2.0.Beta3
JAX-RS Application class looks quite unusual, when is generated using JAX-RS Application
wizard with option generate comments into default package.
{code}
@ApplicationPath("/rest")
/**
*
*/
/**
* @author rrabara
*
*/
public class App extends Application {
}
{code}
When it is generated into user defined package, then there is just one java doc comment:
{code}
@ApplicationPath("/rest")
/**
* @author rrabara
*
*/
public class App extends Application {
}
{code}
However, shouldn't the comment be above the annotation? It seems that it's the
preferred way (e.g. see examples
http://docs.oracle.com/javase/tutorial/java/annotations/predefined.html)