You should use /* */, it seems standard on most open source Java projects. Javadoc should be used to describe Java classes, interfaces, constructors, methods, and fields.
However, if you want to use Javadoc, I think you can, and it will not be in your way if you place the import statement immediately after it. According to this comment posting documentation :
A common mistake is to place an import statement between a class comment and a class declaration. Avoid this as the Javadoc tool will ignore the class comment.
import com.sun;
public class Whatever {
}
source
share