J'ai défini ma propre annotation personnalisée
@Target(value={ElementType.METHOD, ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
public @interface MyCustomAnnotation {
Class<?> myType();
}
Comment puis-je rendre l'attribut facultatif?