slawekjaranowski commented on code in PR #168:
URL: 
https://github.com/apache/maven-plugin-tools/pull/168#discussion_r1008662241


##########
maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/extractor/annotations/datamodel/ParameterAnnotationContent.java:
##########
@@ -48,20 +48,24 @@
 
     private String className;
 
+    private boolean methodSource;
+
     private final List<String> typeParameters;
 
-    public ParameterAnnotationContent( String fieldName, String className, 
List<String> typeParameters )
+    public ParameterAnnotationContent( String fieldName, String className, 
List<String> typeParameters,
+                                       boolean methodSource )
     {
         super( fieldName );
         this.className = className;
         this.typeParameters = typeParameters;
+        this.methodSource = methodSource;
     }
 
     public ParameterAnnotationContent( String fieldName, String alias, String 
property, String defaultValue,
                                        boolean required, boolean readonly, 
String className,
-                                       List<String> typeParameters )
+                                       List<String> typeParameters, boolean 
methodSource )

Review Comment:
   change to `annotationOnMethod`



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to