I am creating my own doclet, and I need to show when a parameter from a method is nullable or not. For that, I want to use the @Nullable annotation from javax.annotation. Somthing like what the people of Google say here:
public Object myMethod(String firstName, String lastName, @Nullable Phone phone) {
//code
}
Is there any way in my Doclet to get that "nullable" annotation for that Phone parameter?