Package org.sormula.annotation.cascade

Annotations for defining cascade relationships between two row classes.

See:
          Description

Class Summary
CascadeAnnotationReader Base class for cascade annotation readers.
DeleteCascadeAnnotationReader Reads delete cascade annotation information for a field.
InsertCascadeAnnotationReader Reads insert cascade annotation information for a field.
SaveCascadeAnnotationReader Reads save cascade annotation information for a field.
SelectCascadeAnnotationReader Reads select cascade annotation information for a field.
UpdateCascadeAnnotationReader Reads update cascade annotation information for a field.
 

Annotation Types Summary
Cascade A general purpose cascade annotation.
DeleteCascade Used within a Cascade annotation to define a cascade delete operation.
InsertCascade Used within a Cascade annotation to define a cascade insert operation.
OneToManyCascade Cascade annotation for a one to many relationship between source row and target row.
OneToOneCascade Cascade annotation for a one to one relationship between source row and target row.
SaveCascade Used within a Cascade annotation to define a cascade save operation.
SelectCascade Used within a Cascade annotation to define a cascade select operation.
UpdateCascade Used within a Cascade annotation to define a cascade update operation.
 

Package org.sormula.annotation.cascade Description

Annotations for defining cascade relationships between two row classes. A cascade relationship allows an operation on a source row to initiate operations on one or more target rows. For example, use a cascade annotation on a parent row so that read/modification on parent row corresponds to read/modify on child rows.