Hi,
I'm looking for a simple UML tool to provide modeling when developing EJB3 entities. It would be great if the annotations could be generated for entity beans
i.e.
@Entity
class Order
{
private Integer id;
private Collection<OrderItems> orderItems;
@Id
public Long getId()
{
return id;
}
@OneToMany
public Collection<OrderItems> getOrderItems()
{
return orderItems;
}
...
}