Package javax.jdo.annotations
Annotation Type Embedded
-
@Target({FIELD,METHOD}) @Retention(RUNTIME) public @interface EmbeddedAnnotation to define that the object is embedded into the table of the owning object. Corresponds to the xml element "embedded".- Since:
- 2.1
- Version:
- 2.1
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description Persistent[]membersMembers for this embedding.java.lang.StringnullIndicatorColumnThe column in the embedded object used to judge if the embedded object is null.java.lang.StringnullIndicatorValueThe value in the null column to interpret the object as being null.java.lang.StringownerMemberThe member in the embedded object that links back to the owning object where it has a bidirectional relationship.
-
-
-
-
members
Persistent[] members
Members for this embedding.- Returns:
- the members embedded in the field or property being annotated
- Default:
- {}
-
-