// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 // 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. // Generated on: 2010.08.02 at 09:18:52 PM BST // package net.sf.mpxj.planner.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.NormalizedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "default-week") public class DefaultWeek { @XmlAttribute @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String mon; @XmlAttribute @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String tue; @XmlAttribute @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String wed; @XmlAttribute @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String thu; @XmlAttribute @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String fri; @XmlAttribute @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String sat; @XmlAttribute @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String sun; /** * Gets the value of the mon property. * * @return * possible object is * {@link String } * */ public String getMon() { return mon; } /** * Sets the value of the mon property. * * @param value * allowed object is * {@link String } * */ public void setMon(String value) { this.mon = value; } /** * Gets the value of the tue property. * * @return * possible object is * {@link String } * */ public String getTue() { return tue; } /** * Sets the value of the tue property. * * @param value * allowed object is * {@link String } * */ public void setTue(String value) { this.tue = value; } /** * Gets the value of the wed property. * * @return * possible object is * {@link String } * */ public String getWed() { return wed; } /** * Sets the value of the wed property. * * @param value * allowed object is * {@link String } * */ public void setWed(String value) { this.wed = value; } /** * Gets the value of the thu property. * * @return * possible object is * {@link String } * */ public String getThu() { return thu; } /** * Sets the value of the thu property. * * @param value * allowed object is * {@link String } * */ public void setThu(String value) { this.thu = value; } /** * Gets the value of the fri property. * * @return * possible object is * {@link String } * */ public String getFri() { return fri; } /** * Sets the value of the fri property. * * @param value * allowed object is * {@link String } * */ public void setFri(String value) { this.fri = value; } /** * Gets the value of the sat property. * * @return * possible object is * {@link String } * */ public String getSat() { return sat; } /** * Sets the value of the sat property. * * @param value * allowed object is * {@link String } * */ public void setSat(String value) { this.sat = value; } /** * Gets the value of the sun property. * * @return * possible object is * {@link String } * */ public String getSun() { return sun; } /** * Sets the value of the sun property. * * @param value * allowed object is * {@link String } * */ public void setSun(String value) { this.sun = value; } }