Skip to content

Commit 761c1c2

Browse files
committed
fix javadoc
1 parent 4b68eec commit 761c1c2

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

src/main/java/ru/objectsfill/object_param/Fill.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ private Fill(Object objectz, Class<?> clazz, List<String> excludedFieldName,
7676
}
7777

7878
/**
79-
8079
set new object if old object was without simple construct
80+
@param objectz new created object.
8181
*/
8282
public void setObjectz(Object objectz) {
8383
this.objectz = objectz;

src/main/java/ru/objectsfill/utils/FieldUtils.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ public static void doWithFields(Fill fill) {
6464
*
6565
* @param fill special generated object
6666
* @param constructor get construct for object creation
67+
* @param <T> type of object
6768
* @return T constructed object
6869
* @throws IllegalArgumentException if the class is null
6970
* @throws IllegalStateException if the FieldCallback encounters an error while processing a field
@@ -77,6 +78,8 @@ public static <T> T addObjectWithParamConstruct(Constructor<?> constructor, Fill
7778
*
7879
* @param fill special generated object
7980
* @param constructor get construct for object creation
81+
* @param <T> type of object
82+
* @param tClass class of outer object for creation
8083
* @return T constructed object
8184
* @throws IllegalArgumentException if the class is null
8285
* @throws IllegalStateException if the FieldCallback encounters an error while processing a field

0 commit comments

Comments
 (0)