You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-batch-core/src/main/java/org/springframework/batch/core/step/builder/AbstractTaskletStepBuilder.java
+18Lines changed: 18 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -49,6 +49,7 @@
49
49
* @author Dave Syer
50
50
* @author Michael Minella
51
51
* @author Mahmoud Ben Hassine
52
+
* @author Ilpyo Yang
52
53
* @since 2.2
53
54
* @param <B> the type of builder represented
54
55
*/
@@ -74,6 +75,23 @@ public AbstractTaskletStepBuilder(StepBuilderHelper<?> parent) {
74
75
super(parent);
75
76
}
76
77
78
+
/**
79
+
* Create a new builder initialized with any properties in the parent. The parent is
80
+
* copied, so it can be re-used.
81
+
* @param parent a parent helper containing common step properties
0 commit comments