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

org.gs4tr.projectdirector.model.dto.xsd.Date Maven / Gradle / Ivy

Go to download

The newest version!

package org.gs4tr.projectdirector.model.dto.xsd;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for Date complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="Date">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="critical" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="date" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Date", propOrder = { "critical", "date" }) public class Date { protected boolean critical; protected long date; /** * Gets the value of the critical property. * */ public boolean isCritical() { return critical; } /** * Sets the value of the critical property. * */ public void setCritical(boolean value) { this.critical = value; } /** * Gets the value of the date property. * */ public long getDate() { return date; } /** * Sets the value of the date property. * */ public void setDate(long value) { this.date = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy