if you format the code in a ejb cmp with ctrl+shift+f you got something like this
* @ejb.bean name=”Role” display-name=”Name for Role” description=”Description
* for Role” jndi-name=”ejb/Role” type=”CMP” cmp-version=”2.x”
* view-type=”local
*
*/
you will be not able to add other tags with autocompletition, for example try to add primkey-field=”id” a the end! i have tested a bit and seem that the problem is that the description tag is cutted into two line, infact if you rewrite the code like this
* @ejb.bean name=”Role” display-name=”Name for Role”
* description=”Description for Role” jndi-name=”ejb/Role” type=”CMP” cmp-version=”2.x”
* view-type=”local
*
*/
you will be reable to see autocompletition and to insert primkey-field=”id” at the end, don’t know if it is a myeclipse or a eclipse problem but i hobe this will be fixed 😉