From a267ad907511a13034d38c0c7813f9c69e51299a Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sat, 1 Sep 2012 11:22:11 -0700 Subject: [PATCH] doc update --- core/src/main/java/hudson/matrix/MatrixChildAction.java | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/core/src/main/java/hudson/matrix/MatrixChildAction.java b/core/src/main/java/hudson/matrix/MatrixChildAction.java index 60422c45df..a43e59d932 100644 --- a/core/src/main/java/hudson/matrix/MatrixChildAction.java +++ b/core/src/main/java/hudson/matrix/MatrixChildAction.java @@ -24,13 +24,16 @@ package hudson.matrix; import hudson.model.Action; +import hudson.model.Queue; +import hudson.model.Queue.Task; /** - * Optional interface for {@link Action}s to indicate that they - * want to be passed to the individual build jobs from the parent in am matrix job. + * Optional interface for {@link Action}s that are used as parameters + * to {@link Queue#schedule(Task, int, Action...)} to indicate that they + * want to be also passed to the {@link MatrixRun}s from its parent {@link MatrixBuild}. * * @author Chris Johnson + * @since 1.481 */ public interface MatrixChildAction extends Action { - } -- GitLab