diff --git a/processor/src/main/java/org/mapstruct/ap/model/assignment/Assignment.java b/processor/src/main/java/org/mapstruct/ap/model/assignment/Assignment.java index a22fa0b0d..8ecd3eccb 100644 --- a/processor/src/main/java/org/mapstruct/ap/model/assignment/Assignment.java +++ b/processor/src/main/java/org/mapstruct/ap/model/assignment/Assignment.java @@ -50,16 +50,16 @@ public interface Assignment { * * @return imported types */ - Set getImportTypes(); + Set getImportTypes(); /** * returns all types exception types thrown by this assignment. * * @return exceptions thrown */ - List getExceptionTypes(); + List getExceptionTypes(); - /** + /** * An assignment in itself can wrap another assignment. E.g.: *
    *
  • a MethodReference can wrap a TypeConversion, another MethodReference and ultimately a Simple
  • @@ -68,22 +68,22 @@ public interface Assignment { * * @param assignment the assignment to set */ - void setAssignment( Assignment assignment ); + void setAssignment(Assignment assignment); - /** - * the source reference being a source-getter, a constant, etc. - * - * @return source reference - */ - String getSourceReference(); + /** + * the source reference being a source-getter, a constant, etc. + * + * @return source reference + */ + String getSourceReference(); - /** - * Returns whether the type of assignment - * - * @return {@link AssignmentType} - */ - AssignmentType getType(); + /** + * Returns whether the type of assignment + * + * @return {@link AssignmentType} + */ + AssignmentType getType(); - boolean isUpdateMethod(); + boolean isUpdateMethod(); }