blob: 740cee76ea581cc5ea1f8fc4230ccf4903da91e4 [file] [log] [blame]
public class A {
/**
* @hibernate.set
* lazy="true"
* table="GUJArticleCategorization"
* cascade="save-update"
* @hibernate.collection-key
* column="articleId"
* @hibernate.collection-many-to-many
* class="br.com.guj.model.Category"
* column="categoryId"
*
* @return categorias deste artigo
*/
public Category getCategory() {
return this.category;
}
}