jaxb2-annotate-plugin не может аннотировать анонимный класс
Кажется, я не могу заставить xjc аннотировать анонимные классы. Так выглядит моя пользовательская аннотация
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD,ElementType.TYPE})
public @interface MyCustomAnnotation{
String value() default "";
}
и элемент с анонимным классом выглядит следующим образом
<xs:element name="myElement" minOccurs="0">
<xs:complexType>
<xs:annotation>
<xs:appinfo>
<annox:annotate type="com.organization.MyCustomAnnotation" target="field" value="Brief description."></annox:annotate>
</xs:appinfo>
</xs:annotation>
<xs:sequence>
<xs:element name="fieldA" type="xs:double">
<xs:annotation>
<xs:appinfo>
<annox:annotate type="com.organization.MyCustomAnnotation" target="field" value="FieldA description."></annox:annotate>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="fieldB" type="xs:int">
<xs:annotation>
<xs:appinfo>
<annox:annotate type="com.organization.MyCustomAnnotation" target="field" value="FieldB description."></annox:annotate>
</xs:appinfo>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
Я хотел бы, чтобы поле создания было аннотировано пользовательской аннотацией
@MyCustomAnnotation("Brief description")
protected MainClass.MyElement myElement;