olha soh, quando mando o eclipse 3m4 formatar meu codigo, que esta assim:
	/**
	 * @hibernate.set lazy="true" 
	 *  table="GUJAuthory" cascade="save-update"
	 * @hibernate.collection-key 
	 *  column="articleId"
	 * @hibernate.collection-many-to-many 
	 *  class="br.com.guj.model.Member"
	 * column="authorId"
	 * 
	 * @return os authors deste artigo
	 */
	public Set getAuthors() {
		return this.authors;
	}
ele transforma em
	/**
	 * @hibernate.set lazy="true" table="GUJAuthory" cascade="save-update"
	 * @hibernate.collection-key column="articleId"
	 * @hibernate.collection-many-to-many class="br.com.guj.model.Member"
	 * column="authorId"
	 * 
	 * @return os authors deste artigo
	 */
	public Set getAuthors() {
		return this.authors;
	}
Poxa! E pior que o XDoclet nao entende isso ai quando fica tudo junto. Ja tentei mexer em milhares de opcoes do code formatter. Isso nao acontecia no eclipse M3. Alguem da um help?
