Skip to content

Commit

Permalink
Close opening tag in JavaDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
XiongKezhi committed Aug 18, 2020
1 parent 072aabf commit cbeae0e
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,19 @@ private static void publish(final ChecksPublisher publisher, final ChecksStatus

/**
* {@inheritDoc}
*
* <p>
* Listens to the queue and publishes checks in "queued" state for entering items.
* </p>
*/
@Extension
public static class JobScheduledListener extends QueueListener {
/**
* {@inheritDoc}
*
* <p>
* When a job enters queue, creates the check on "queued".
* </p>
*/
@Override
public void onEnterWaiting(final Queue.WaitingItem wi) {
Expand All @@ -58,15 +62,18 @@ public void onEnterWaiting(final Queue.WaitingItem wi) {

/**
* {@inheritDoc}
*
* <p>
* Listens to the SCM checkout and publishes checks.
* </p>
*/
@Extension
public static class JobCheckoutListener extends SCMListener {
/**
* {@inheritDoc}
* <p>
* When checkout finished, update the check to "in progress".
* </p>
*/
@Override
public void onCheckout(final Run<?, ?> run, final SCM scm, final FilePath workspace,
Expand All @@ -78,15 +85,19 @@ public void onCheckout(final Run<?, ?> run, final SCM scm, final FilePath worksp

/**
* {@inheritDoc}
*
* <p>
* Listens to the run and publishes checks.
* </p>
*/
@Extension
public static class JobCompletedListener extends RunListener<Run<?, ?>> {
/**
* {@inheritDoc}
*
* <p>
* When a job completes, completes the check.
* </p>
*/
@Override
public void onCompleted(final Run run, @Nullable final TaskListener listener) {
Expand Down

0 comments on commit cbeae0e

Please sign in to comment.