For example, there is a businessMethod() with the XDoclet tag @ejb.interface-method view-type = “remote” and associated Javadoc
/**
* My class overview Javadoc. This text is not included in the generated
* remote interface Test
* @author: Jack
*/
public class TestBean extends EntityBean {
….
/**
* businessMethod performs blah blah
* @return some string
* @ejb.interface-method view-type = “remote”
*/
public String businessMethod() {
}
}
The businessMethod() method will be included in the remote interface as generated by XDoclet because of the presence of the XDoclet tag @ejb.interface-method view-type = “remote”.
The text starting with “My class overview Javadoc…” does not.
I hope this explains it.
Jason