Skip to content

Commit 5e9e7fe

Browse files
committed
Java: Add some qldoc and minor formatting.
1 parent e6658c5 commit 5e9e7fe

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed
Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,25 @@
11
import java
22
import SpringHttp
33

4+
/** The class `org.springframework.web.client.RestTemplate`. */
45
class SpringRestTemplate extends Class {
5-
SpringRestTemplate() { hasQualifiedName("org.springframework.web.client", "RestTemplate") }
6+
SpringRestTemplate() { this.hasQualifiedName("org.springframework.web.client", "RestTemplate") }
67
}
78

9+
/**
10+
* A method declared in `org.springframework.web.client.RestTemplate` that
11+
* returns a `SpringResponseEntity`.
12+
*/
813
class SpringRestTemplateResponseEntityMethod extends Method {
914
SpringRestTemplateResponseEntityMethod() {
10-
getDeclaringType() instanceof SpringRestTemplate and
11-
getReturnType() instanceof SpringResponseEntity
15+
this.getDeclaringType() instanceof SpringRestTemplate and
16+
this.getReturnType() instanceof SpringResponseEntity
1217
}
1318
}
1419

20+
/** The interface `org.springframework.web.reactive.function.client.WebClient`. */
1521
class SpringWebClient extends Interface {
16-
SpringWebClient() { hasQualifiedName("org.springframework.web.reactive.function.client", "WebClient")}
17-
}
22+
SpringWebClient() {
23+
this.hasQualifiedName("org.springframework.web.reactive.function.client", "WebClient")
24+
}
25+
}

0 commit comments

Comments
 (0)