KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > completion > TestBasicAnnotation


1 package org.completion;
2 /** Completion of all J2EE annotation names */
3 /**CC
4 @J|
5 JoinColumn (javax.persistence)
6 @JoinColumn()
7 */

8
9 /** Completion of reduced J2EE annotation names */
10 /**CC
11 @Ta|
12 TableGenerator (javax.persistence)
13 @TableGenerator()
14 */

15
16 /** Completion of all J2EE annotation attributes */
17 /**CC
18 @ManyToOne(|
19 boolean optional
20 @ManyToOne(optional=
21 */

22
23 /** Completion of reduced J2EE annotation attributes */
24 /**CC
25 @Inheritance(stra|
26 InheritanceType strategy
27 @Inheritance(strategy=
28 */

29
30 /** Completion of all J2EE annotation values */
31 /**CC
32 @Basic(fetch=|
33 LAZY FetchType
34 @Basic(fetch=LAZY
35 */

36
37 /** Completion of reduced J2EE annotation values */
38 /**!!!CC
39 @ManyToOne(cascade=R|
40 REMOVE CascadeType
41 @ManyToOne(cascade=CascadeType.REMOVE
42 */

43
Popular Tags