13
13
14
14
public class PropertyDetectorTest extends LintDetectorTest {
15
15
16
- public void testBasic0 () throws Exception {
16
+ public void testBasic1 () throws Exception {
17
17
String string = lintProject (
18
18
java (getTestSource ()),
19
19
// TestFiles.copy("FlowItem.java", "src/test/dm/lint/test/FlowItem.java.java", this),
@@ -24,6 +24,16 @@ public void testBasic0() throws Exception {
24
24
System .out .println (string );
25
25
}
26
26
27
+ public void testBasic2 () throws Exception {
28
+ String string = lintProject (
29
+ java (getTestSource2 ()),
30
+ TestFiles .copy ("Java-base-1.1.0.jar" , "libs/Java-base.jar" , this ),
31
+ TestFiles .copy ("data-mediator-1.4.4.jar" , "libs/data-mediator.jar" , this ),
32
+ TestFiles .copy ("data-mediator-annotations-1.2.2.jar" , "libs/data-mediator-annotations.jar" , this )
33
+ );
34
+ System .out .println (string );
35
+ }
36
+
27
37
private String getTestSource (){
28
38
return "" +
29
39
"package dm.lint.test;\n " +
@@ -48,27 +58,48 @@ private String getTestSource(){
48
58
"}" ;
49
59
}
50
60
private String getTestSource2 (){
51
- return "" +
52
- "package dm.lint.test; \n " +
61
+ return "package com.heaven7.java.data.mediator.lint; \n " +
62
+ "\n " +
53
63
"import com.heaven7.java.data.mediator.DataPools;\n " +
54
64
"import com.heaven7.java.data.mediator.Field;\n " +
55
- "import com.heaven7.java.data.mediator.FieldFlags;\n " +
56
65
"import com.heaven7.java.data.mediator.Fields;\n " +
57
- "import com.heaven7.java.data.mediator.ListPropertyEditor;\n " +
58
66
"import com.heaven7.java.data.mediator.Property;\n " +
59
67
"import com.heaven7.java.data.mediator.internal.SharedProperties;\n " +
60
68
"\n " +
61
- "import java.util.List;\n " +
62
- "@Fields(value = {\n " +
63
- " @Field(propName = \" desc\" , complexType = FieldFlags.COMPLEX_LIST),\n " +
69
+ "@Fields({\n " +
70
+ " @Field(propName = \" text1\" )\n " +
64
71
"})\n " +
65
- "public interface FlowItem extends DataPools.Poolable {\n " +
66
- " Property PROP_desc = SharedProperties.get(String.class.getName(), \" desc\" , 2);\n " +
67
- " FlowItem setDesc(List<String> desc1);\n " +
68
- " List<String> getDesc();\n " +
69
- " ListPropertyEditor<? extends FlowItem, String> beginDescEditor();\n " +
70
- " void getxxx();\n " +
71
- "}" ;
72
+ "public interface Parent extends DataPools.Poolable {\n " +
73
+ "\n " +
74
+ " Property PROP_text1 = SharedProperties.get(\" java.lang.String\" , \" text1\" , 0);\n " +
75
+ "\n " +
76
+ " @Fields({\n " +
77
+ " @Field(propName = \" text2\" )\n " +
78
+ " })\n " +
79
+ " interface Child extends Parent{\n " +
80
+ "\n " +
81
+ " Property PROP_text2 = SharedProperties.get(\" java.lang.String\" , \" text2\" , 0);\n " +
82
+ "\n " +
83
+ " Child setText2(String text21);\n " +
84
+ " String getText2();\n " +
85
+ "\n " +
86
+ " Child setText1(String text11);\n " +
87
+ " }\n " +
88
+ " @Fields({\n " +
89
+ " @Field(propName = \" text3\" )\n " +
90
+ " })\n " +
91
+ " interface Child2 extends Child{\n " +
92
+ " Property PROP_text3 = SharedProperties.get(\" java.lang.String\" , \" text3\" , 0);\n " +
93
+ " Child2 setText3(String text31);\n " +
94
+ " String getText3();\n " +
95
+ "\n " +
96
+ " Child2 setText2(String text21);\n " +
97
+ " Child2 setText1(String text11);\n " +
98
+ " }\n " +
99
+ "\n " +
100
+ " Parent setText1(String text11);\n " +
101
+ " String getText1();\n " +
102
+ "}\n " ;
72
103
}
73
104
74
105
@ Override
0 commit comments