All Downloads are FREE. Search and download functionalities are using the official Maven repository.

hudson.widgets.BuildHistoryWidget Maven / Gradle / Ivy

The newest version!
/*******************************************************************************
 *
 * Copyright (c) 2004-2009 Oracle Corporation.
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors: 
*
*    Kohsuke Kawaguchi
 *     
 *
 *******************************************************************************/ 

package hudson.widgets;

import hudson.model.Hudson;
import hudson.model.Queue.Item;
import hudson.model.Queue.Task;

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;

/**
 * Displays the build history on the side panel.
 *
 * 

* This widget enhances {@link HistoryWidget} by groking the notion * that {@link #owner} can be in the queue toward the next build. * * @author Kohsuke Kawaguchi */ public class BuildHistoryWidget extends HistoryWidget { /** * @param owner * The parent model object that owns this widget. */ public BuildHistoryWidget(Task owner, Iterable baseList,Adapter adapter) { super(owner,baseList, adapter); } /** * Returns the first queue item if the owner is scheduled for execution in the queue. */ public Item getQueuedItem() { return Hudson.getInstance().getQueue().getItem(owner); } /** * Returns the queue item if the owner is scheduled for execution in the queue, in REVERSE ORDER */ public List getQueuedItems() { List list = new ArrayList(Hudson.getInstance().getQueue().getItems(owner)); Collections.reverse(list); return list; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy