01: package org.completion;
02:
03: import javax.persistence.*;
04:
05: /** Completion of all J2EE annotation names */
06: /**CC
07: @J|
08: JoinColumn
09: @JoinColumn
10: */
11:
12: /** Completion of reduced J2EE annotation names */
13: /**CC
14: @Ta|
15: TableGenerator
16: @TableGenerator
17: */
18:
19: /** Completion of all J2EE annotation attributes */
20: /**CC
21: @ManyToOne(|
22: boolean optional = true
23: @ManyToOne(optional=
24: */
25:
26: /** Completion of reduced J2EE annotation attributes */
27: /**CC
28: @Inheritance(|
29: InheritanceType strategy = javax.persistence
30: @Inheritance(strategy=
31: */
32:
33: /** Completion of all J2EE annotation values */
34: /**CC
35: @Basic(fetch=|
36: FetchType FetchType.LAZY
37: @Basic(fetch=FetchType.LAZY
38: */
39:
40: /** Completion of reduced J2EE annotation values */
41: /**CC
42: @ManyToOne(cascade=|
43: CascadeType CascadeType.REMOVE
44: @ManyToOne(cascade=CascadeType.REMOVE
45: */
46:
47: public class TestBasicAnnotation {
48:
49: /** Creates a new instance of NewClass */
50: public TestBasicAnnotation() {
51: }
52:
53: }
|