org.gs4tr.projectdirector.model.dto.xsd.LanguagePhaseInfo Maven / Gradle / Ivy
Show all versions of globallink-connect-api Show documentation
package org.gs4tr.projectdirector.model.dto.xsd;
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;
/**
* Java class for LanguagePhaseInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="LanguagePhaseInfo">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="phaseStartDate" type="{http://dto.model.projectdirector.gs4tr.org/xsd}Date"/>
* <element name="sourceFileList" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* <element name="tmStatistics" type="{http://dto.model.projectdirector.gs4tr.org/xsd}TmStatistics"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "LanguagePhaseInfo", propOrder = {
"phaseStartDate",
"sourceFileList",
"tmStatistics"
})
public class LanguagePhaseInfo {
@XmlElement(required = true, nillable = true)
protected Date phaseStartDate;
@XmlElement(nillable = true)
protected List sourceFileList;
@XmlElement(required = true, nillable = true)
protected TmStatistics tmStatistics;
/**
* Gets the value of the phaseStartDate property.
*
* @return
* possible object is
* {@link Date }
*
*/
public Date getPhaseStartDate() {
return phaseStartDate;
}
/**
* Sets the value of the phaseStartDate property.
*
* @param value
* allowed object is
* {@link Date }
*
*/
public void setPhaseStartDate(Date value) {
this.phaseStartDate = value;
}
/**
* Gets the value of the sourceFileList property.
*
*
* 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 set
method for the sourceFileList property.
*
*
* For example, to add a new item, do as follows:
*
* getSourceFileList().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getSourceFileList() {
if (sourceFileList == null) {
sourceFileList = new ArrayList();
}
return this.sourceFileList;
}
/**
* Gets the value of the tmStatistics property.
*
* @return
* possible object is
* {@link TmStatistics }
*
*/
public TmStatistics getTmStatistics() {
return tmStatistics;
}
/**
* Sets the value of the tmStatistics property.
*
* @param value
* allowed object is
* {@link TmStatistics }
*
*/
public void setTmStatistics(TmStatistics value) {
this.tmStatistics = value;
}
}