Javadoc: How to open the external link http in the browser?

Answered

I'm looking the javadoc and find the link http, as reference a more info, but when Click, Ctrl Click not open in my browser

 

Exist some method o plugin for open this externas link http in the browser?

0
4 comments

How does the link look like? 

If it is full URL like <a href="https://example.com/interface">interface</a>, IntelliJ IDEA will open the browser. 

If it is related link like <a href="/interface">interface</a>, paths to API docs should be configured in project settings: https://i.imgur.com/U8aNQQ5.png

0

The code is in this format:

 

  /**
* Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/google#credentials GoogleProvider#credentials}.
* <p>
* @return {@code this}
* @param credentials Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/google#credentials GoogleProvider#credentials}. This parameter is required.
*/
public Builder credentials(final java.lang.String credentials) {
this.config().credentials(credentials);
return this;
}

 

This code is autogenerate by terraform-cdk

 
 

 

 

0

Please sign in to leave a comment.