Another thing about annotations <--> xml.

In xml, we have
<field name="department" column="DEPARTMENT"/>
or
<field name="department" >
  <column name="DEPARTMENT"/>
</field>


In annotations, it's
@Field ([EMAIL PROTECTED](name="DEPARTMENT"))
Department department;

or
@Column(name="DEPARTMENT")
Department department;

It would be nice if we could have @Column("DEPARTMENT") instead of @Column(name="DEPARTMENT").

Also @Field (column="DEPARTMENT")

Craig

Craig Russell
Architect, Sun Java Enterprise System http://java.sun.com/products/jdo
408 276-5638 mailto:[EMAIL PROTECTED]
P.S. A good JDO? O, Gasp!

Attachment: smime.p7s
Description: S/MIME cryptographic signature

Reply via email to