com.ibm.rqm.xml.bind.Estimation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of demoiselle-behave-integration-alm Show documentation
Show all versions of demoiselle-behave-integration-alm Show documentation
Demoiselle Behave Integration - ALM
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2015.07.13 at 12:00:05 PM BRT
//
package com.ibm.rqm.xml.bind;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="planningEffort" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="executionEffort" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="planningEffortPersonHours" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
* <element name="executionEffortPersonHours" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"planningEffort",
"executionEffort",
"planningEffortPersonHours",
"executionEffortPersonHours"
})
@XmlRootElement(name = "estimation")
public class Estimation {
protected Integer planningEffort;
protected Integer executionEffort;
protected Float planningEffortPersonHours;
protected Float executionEffortPersonHours;
/**
* Gets the value of the planningEffort property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getPlanningEffort() {
return planningEffort;
}
/**
* Sets the value of the planningEffort property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setPlanningEffort(Integer value) {
this.planningEffort = value;
}
/**
* Gets the value of the executionEffort property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getExecutionEffort() {
return executionEffort;
}
/**
* Sets the value of the executionEffort property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setExecutionEffort(Integer value) {
this.executionEffort = value;
}
/**
* Gets the value of the planningEffortPersonHours property.
*
* @return
* possible object is
* {@link Float }
*
*/
public Float getPlanningEffortPersonHours() {
return planningEffortPersonHours;
}
/**
* Sets the value of the planningEffortPersonHours property.
*
* @param value
* allowed object is
* {@link Float }
*
*/
public void setPlanningEffortPersonHours(Float value) {
this.planningEffortPersonHours = value;
}
/**
* Gets the value of the executionEffortPersonHours property.
*
* @return
* possible object is
* {@link Float }
*
*/
public Float getExecutionEffortPersonHours() {
return executionEffortPersonHours;
}
/**
* Sets the value of the executionEffortPersonHours property.
*
* @param value
* allowed object is
* {@link Float }
*
*/
public void setExecutionEffortPersonHours(Float value) {
this.executionEffortPersonHours = value;
}
}