添加层级对象接口

This commit is contained in:
huangchengxing
2022-07-14 16:16:14 +08:00
parent 18f67274b8
commit cf08a92f34
9 changed files with 284 additions and 40 deletions

View File

@@ -106,6 +106,11 @@ public class AliasAnnotationPostProcessorTest {
public Object getAttribute(String attributeName, Class<?> attributeType) {
return null;
}
@Override
public Object getRoot() {
return null;
}
}
static class TestSynthesizedAnnotation implements SynthesizedAnnotation {

View File

@@ -134,6 +134,11 @@ public class AliasLinkAnnotationPostProcessorTest {
public Object getAttribute(String attributeName, Class<?> attributeType) {
return null;
}
@Override
public Object getRoot() {
return null;
}
}
static class TestSynthesizedAnnotation implements SynthesizedAnnotation {

View File

@@ -109,6 +109,11 @@ public class MirrorLinkAnnotationPostProcessorTest {
return null;
}
@Override
public Object getRoot() {
return null;
}
}
static class TestSynthesizedAnnotation implements SynthesizedAnnotation {