blob: 97f583949581fc5016d0f334b3aade324e693f73 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 Tasktop Technologies and others.
* 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:
* Tasktop Technologies - initial API and implementation
*******************************************************************************/
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
package org.eclipse.mylyn.internal.hudson.model;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for hudson.tasks.junit.TestResult complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="hudson.tasks.junit.TestResult">
* &lt;complexContent>
* &lt;extension base="{}hudson.tasks.test.MetaTabulatedResult">
* &lt;sequence>
* &lt;element name="duration" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
* &lt;element name="failCount" type="{http://www.w3.org/2001/XMLSchema}int"/>
* &lt;element name="passCount" type="{http://www.w3.org/2001/XMLSchema}int"/>
* &lt;element name="skipCount" type="{http://www.w3.org/2001/XMLSchema}int"/>
* &lt;element name="suite" type="{}hudson.tasks.junit.SuiteResult" maxOccurs="unbounded" minOccurs="0"/>
* &lt;/sequence>
* &lt;/extension>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "hudson.tasks.junit.TestResult", propOrder = {
"duration",
"failCount",
"passCount",
"skipCount",
"suite"
})
@SuppressWarnings("all")
public class HudsonTasksJunitTestResult
extends HudsonTasksTestMetaTabulatedResult
{
@XmlElement(required = true)
protected Object duration;
protected int failCount;
protected int passCount;
protected int skipCount;
protected List<HudsonTasksJunitSuiteResult> suite;
/**
* Gets the value of the duration property.
*
* @return
* possible object is
* {@link Object }
*
*/
public Object getDuration() {
return duration;
}
/**
* Sets the value of the duration property.
*
* @param value
* allowed object is
* {@link Object }
*
*/
public void setDuration(Object value) {
this.duration = value;
}
/**
* Gets the value of the failCount property.
*
*/
public int getFailCount() {
return failCount;
}
/**
* Sets the value of the failCount property.
*
*/
public void setFailCount(int value) {
this.failCount = value;
}
/**
* Gets the value of the passCount property.
*
*/
public int getPassCount() {
return passCount;
}
/**
* Sets the value of the passCount property.
*
*/
public void setPassCount(int value) {
this.passCount = value;
}
/**
* Gets the value of the skipCount property.
*
*/
public int getSkipCount() {
return skipCount;
}
/**
* Sets the value of the skipCount property.
*
*/
public void setSkipCount(int value) {
this.skipCount = value;
}
/**
* Gets the value of the suite property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the suite property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getSuite().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link HudsonTasksJunitSuiteResult }
*
*
*/
public List<HudsonTasksJunitSuiteResult> getSuite() {
if (suite == null) {
suite = new ArrayList<HudsonTasksJunitSuiteResult>();
}
return this.suite;
}
}