Javadoc ignore parameter annotation

I have functions like

public void setName(@StdString String name) { }

      

Javadoc creates the method as is. However, I want to remove annotations @StdString

from the generated document.

Expected Result

public void setName(String name) { }

      

I want to ignore all custom annotations used in the source file. Is there a way to achieve this? Thank.

+3


source to share





All Articles