Java: More qldoc and some formatting.

This commit is contained in:
Anders Schack-Mulligen 2020-07-06 16:04:14 +02:00
Родитель 5e9e7feddc
Коммит b06d1c715a
5 изменённых файлов: 19 добавлений и 4 удалений

Просмотреть файл

@ -1,3 +1,3 @@
import java
import spring.SpringController
import spring.SpringWeb
import spring.SpringWeb

Просмотреть файл

@ -154,12 +154,14 @@ class SpringServletInputAnnotation extends Annotation {
}
}
/** An annotation of the type `org.springframework.web.bind.annotation.ModelAttribute`. */
class SpringModelAttributeAnnotation extends Annotation {
SpringModelAttributeAnnotation() {
getType().hasQualifiedName("org.springframework.web.bind.annotation", "ModelAttribute")
}
}
/** A parameter of a `SpringRequestMappingMethod`. */
class SpringRequestMappingParameter extends Parameter {
SpringRequestMappingParameter() { getCallable() instanceof SpringRequestMappingMethod }

Просмотреть файл

@ -1,3 +1,8 @@
/**
* Provides classes for working with Spring classes and interfaces from
* `org.springframework.http`.
*/
import java
/** The class `org.springframework.http.HttpEntity` or an instantiation of it. */

Просмотреть файл

@ -1,15 +1,19 @@
/**
* Provides classes for working with Spring web requests.
*/
import java
/** An interface for web requests in the Spring framework. */
class SpringWebRequest extends Class {
SpringWebRequest() {
hasQualifiedName("org.springframework.web.context.request", "WebRequest")
this.hasQualifiedName("org.springframework.web.context.request", "WebRequest")
}
}
/** An interface for web requests in the Spring framework. */
class SpringNativeWebRequest extends Class {
SpringNativeWebRequest() {
hasQualifiedName("org.springframework.web.context.request", "NativeWebRequest")
this.hasQualifiedName("org.springframework.web.context.request", "NativeWebRequest")
}
}
}

Просмотреть файл

@ -1,3 +1,7 @@
/**
* Provides classes for working with Spring web clients.
*/
import java
import SpringHttp