Source code: com/the/test/Test2.java
1 package com.the.test;
2 import java.util.*;
3 import java.math.*;
4 import java.sql.*;
5 import com.gopas.rt.util.*;
6 import com.gopas.rt.model.*;
7 import com.gopas.tangox.pers.reldb.*;
8 public interface Test2
9 extends Entity, RT
10 {
11
12 // --- attr2 attr2 ---
13 public Attr getAttrAttr2();
14 public BigDecimal getAttr2();
15 public void setAttr2Comp(BigDecimal p);
16 public void setAttr2Gui(BigDecimal p);
17 public static final String attr2_ATTR = "attr2";
18 public static final AttrDesc attr2_DESC =
19 new AttrDesc(
20 Test2Impl.class,
21 BigDecimal.class,
22 "attr2",
23 AttrImpl.ZERO,
24 AttrImpl.ZERO,
25 ATTR2_STEREO);
26
27 // --- attr valTest1 ---
28 public Test1 getValTest1();
29 public void setValTest1(Test1 p);
30 public static final String valTest1_ATTR = "valTest1";
31 public static final AttrDesc valTest1_DESC =
32 new AttrDesc(
33 Test2Impl.class,
34 Test1.class,
35 "valTest1",
36 null,
37 null,
38 ATTR_STEREO);
39
40 // --- attr valEntity ---
41 public Entity getValEntity();
42 public void setValEntity(Entity p);
43 public static final String valEntity_ATTR = "valEntity";
44 public static final AttrDesc valEntity_DESC =
45 new AttrDesc(
46 Test2Impl.class,
47 Entity.class,
48 "valEntity",
49 null,
50 null,
51 ATTR_STEREO);
52
53 // --- aggr valAggrEntity ---
54 public java.util.List getValAggrEntity();
55 public static final String valAggrEntity_AGGR = "valAggrEntity";
56 public static final AttrDesc valAggrEntity_DESC =
57 new AttrDesc(
58 Test2Impl.class,
59 Entity.class,
60 "valAggrEntity",
61 null,
62 null,
63 AGGR_STEREO);
64
65 // --- aggr valAggrTest1 ---
66 public java.util.List getValAggrTest1();
67 public static final String valAggrTest1_AGGR = "valAggrTest1";
68 public static final AttrDesc valAggrTest1_DESC =
69 new AttrDesc(
70 Test2Impl.class,
71 Test1.class,
72 "valAggrTest1",
73 null,
74 null,
75 AGGR_STEREO);
76
77 // --- aggr valAggrString ---
78 public java.util.List getValAggrString();
79 public static final String valAggrString_AGGR = "valAggrString";
80 public static final AttrDesc valAggrString_DESC =
81 new AttrDesc(
82 Test2Impl.class,
83 String.class,
84 "valAggrString",
85 null,
86 null,
87 AGGR_STEREO);
88
89 // --- aggr valAggrBD ---
90 public java.util.List getValAggrBD();
91 public static final String valAggrBD_AGGR = "valAggrBD";
92 public static final AttrDesc valAggrBD_DESC =
93 new AttrDesc(
94 Test2Impl.class,
95 BigDecimal.class,
96 "valAggrBD",
97 null,
98 null,
99 AGGR_STEREO);
100
101 public TypeDesc typeDesc =
102 new TypeDesc(
103 Test2Impl.class,
104 Entity.typeDesc,
105 new AttrDesc[] {
106 attr2_DESC,
107 valTest1_DESC,
108 valEntity_DESC,
109 valAggrEntity_DESC,
110 valAggrTest1_DESC,
111 valAggrString_DESC,
112 valAggrBD_DESC,
113 });
114
115 public static final ColumnDesc[] columnDescArr = {
116 new ColumnDesc(attr2_DESC, "attr2", Types.NUMERIC),
117 new ColumnDesc(valTest1_DESC, "valTest1", Types.VARCHAR),
118 new ColumnDesc(valEntity_DESC, "valEntity", Types.VARCHAR),
119 new ColumnDesc(valAggrEntity_DESC, "valAggrEntity", Types.VARCHAR),
120 new ColumnDesc(valAggrTest1_DESC, "valAggrTest1", Types.VARCHAR),
121 new ColumnDesc(valAggrString_DESC, "valAggrString", Types.VARCHAR),
122 new ColumnDesc(valAggrBD_DESC, "valAggrBD", Types.VARCHAR),
123 };
124 }