mirror of
https://github.com/mapstruct/mapstruct.git
synced 2025-07-12 00:00:08 +08:00
Removing javadoc warnings in build
This commit is contained in:
parent
daddb255dd
commit
fd077047ca
@ -52,6 +52,7 @@ public class ForgedMethod implements Method {
|
||||
* @param name the (unique name) for this method
|
||||
* @param sourceType the source type
|
||||
* @param targetType the target type.
|
||||
* @param mapperConfiguration the mapper configuration
|
||||
* @param positionHintElement element used to for reference to the position in the source file.
|
||||
*/
|
||||
public ForgedMethod(String name, Type sourceType, Type targetType, MapperConfiguration mapperConfiguration,
|
||||
|
@ -109,6 +109,7 @@ public abstract class AnnotationBasedComponentModelProcessor implements ModelEle
|
||||
|
||||
/**
|
||||
* @param originalReference the reference to be replaced
|
||||
* @param annotations the list of annotations
|
||||
*
|
||||
* @return the mapper reference replacing the original one
|
||||
*/
|
||||
@ -127,6 +128,8 @@ public abstract class AnnotationBasedComponentModelProcessor implements ModelEle
|
||||
protected abstract String getComponentModelIdentifier();
|
||||
|
||||
/**
|
||||
* @param mapper the mapper
|
||||
*
|
||||
* @return the annotation(s) to be added at the mapper type implementation
|
||||
*/
|
||||
protected abstract List<Annotation> getTypeAnnotations(Mapper mapper);
|
||||
|
@ -30,6 +30,10 @@ public interface AccessorNamingStrategy {
|
||||
|
||||
/**
|
||||
* Returns the type of the given method.
|
||||
*
|
||||
* @param method to be analyzed.
|
||||
*
|
||||
* @return the method type.
|
||||
*/
|
||||
MethodType getMethodType(ExecutableElement method);
|
||||
|
||||
@ -38,6 +42,10 @@ public interface AccessorNamingStrategy {
|
||||
* <p>
|
||||
* The default implementation will e.g. return "name" for {@code public String getName()} or {@code public void
|
||||
* setName(String name)}.
|
||||
*
|
||||
* @param getterOrSetterMethod to be analyzed.
|
||||
*
|
||||
* @return property name derived from the getterOrSetterMethod
|
||||
*/
|
||||
String getPropertyName(ExecutableElement getterOrSetterMethod);
|
||||
|
||||
@ -45,6 +53,10 @@ public interface AccessorNamingStrategy {
|
||||
* Returns the element name of the given adder method.
|
||||
* <p>
|
||||
* The default implementation will e.g. return "item" for {@code public void addItem(String item)}.
|
||||
*
|
||||
* @param adderMethod to be getterOrSetterMethod.
|
||||
*
|
||||
* @return getter name for collections
|
||||
*/
|
||||
String getElementName(ExecutableElement adderMethod);
|
||||
|
||||
@ -52,6 +64,10 @@ public interface AccessorNamingStrategy {
|
||||
* Returns the getter name of the given collection property.
|
||||
* <p>
|
||||
* The default implementation will e.g. return "getItems" for "items".
|
||||
*
|
||||
* @param property to be getterOrSetterMethod.
|
||||
*
|
||||
* @return getter name for collection properties
|
||||
*/
|
||||
String getCollectionGetterName(String property);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user