I'm trying to generate a Javadoc for my project, but I can't seem to find how to create a link to a precise Method :
public static Html select(Buffer<String> contentBuffer, String id, String name, String classes, boolean isMultiple, String[]... attributeList)
I tried :
{@link #select(Buffer, String, String, String, boolean, String:A...) select()}
{@link #select(Buffer, String, String, String, boolean, String[]...) select()}
But there are no link created at all ... I get the error error: unexpected text
on the link tag.
Am I missing something?
EDIT : I already know how to form a valid {@link}
, but for some reason, it doesn't work here ...