public @interface MyAnnotation{
public String someProperty();
//How should I achieve this?
public String someOtherProperty() default someProperty();
}
我在注释中有两个属性,当未指定一个属性时,我想将另一个用作默认值。有没有办法做到这一点?
或者我必须做以下检查
if(myAnnotation.someOtherProperty() == null){
//Use the value of someProperty
}