In a simple java file, I am writing my xDoclet tags for Hibernate using @hibernate. When using autocomplete “ctrl-space” it list all properties of the @hibernate tag. When I select one, nothing is written on the java file. The following shows a class type comment.
When using autocomplete after writing @hibernate. I get a list of available properties (class, discriminator, query, …). I then select “class”, but it does not get written. This is also true for properties value. For example the “select-before-update” property of the “@hibernate.class” tag has 2 possible values (true or false). When I select ‘true’ it does not get written either.
/**
* some class comment here
* @author Robert Chartier
* @hibernate.class table=”tb_person”
*
*/
Robert C