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

org.opensourcebim.bcf.markup.Header Maven / Gradle / Ivy

There is a newer version: 0.0.36
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2016.04.12 at 08:24:55 AM CEST 
//


package org.opensourcebim.bcf.markup;

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.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Java class for Header complex type. * *

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

 * <complexType name="Header">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="File" maxOccurs="unbounded">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="Filename" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *                   <element name="Date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *                   <element name="Reference" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *                 </sequence>
 *                 <attGroup ref="{}FileAttributes"/>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Header", propOrder = { "file" }) public class Header { @XmlElement(name = "File", required = true) protected List file; /** * Gets the value of the file 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 file property. * *

* For example, to add a new item, do as follows: *

     *    getFile().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Header.File } * * */ public List getFile() { if (file == null) { file = new ArrayList(); } return this.file; } /** *

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="Filename" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
     *         <element name="Date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
     *         <element name="Reference" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
     *       </sequence>
     *       <attGroup ref="{}FileAttributes"/>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "filename", "date", "reference" }) public static class File { @XmlElement(name = "Filename") protected String filename; @XmlElement(name = "Date") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar date; @XmlElement(name = "Reference") protected String reference; @XmlAttribute(name = "IfcProject") protected String ifcProject; @XmlAttribute(name = "IfcSpatialStructureElement") protected String ifcSpatialStructureElement; @XmlAttribute(name = "isExternal") protected Boolean isExternal; /** * Gets the value of the filename property. * * @return * possible object is * {@link String } * */ public String getFilename() { return filename; } /** * Sets the value of the filename property. * * @param value * allowed object is * {@link String } * */ public void setFilename(String value) { this.filename = value; } /** * Gets the value of the date property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getDate() { return date; } /** * Sets the value of the date property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setDate(XMLGregorianCalendar value) { this.date = value; } /** * Gets the value of the reference property. * * @return * possible object is * {@link String } * */ public String getReference() { return reference; } /** * Sets the value of the reference property. * * @param value * allowed object is * {@link String } * */ public void setReference(String value) { this.reference = value; } /** * Gets the value of the ifcProject property. * * @return * possible object is * {@link String } * */ public String getIfcProject() { return ifcProject; } /** * Sets the value of the ifcProject property. * * @param value * allowed object is * {@link String } * */ public void setIfcProject(String value) { this.ifcProject = value; } /** * Gets the value of the ifcSpatialStructureElement property. * * @return * possible object is * {@link String } * */ public String getIfcSpatialStructureElement() { return ifcSpatialStructureElement; } /** * Sets the value of the ifcSpatialStructureElement property. * * @param value * allowed object is * {@link String } * */ public void setIfcSpatialStructureElement(String value) { this.ifcSpatialStructureElement = value; } /** * Gets the value of the isExternal property. * * @return * possible object is * {@link Boolean } * */ public boolean isIsExternal() { if (isExternal == null) { return true; } else { return isExternal; } } /** * Sets the value of the isExternal property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsExternal(Boolean value) { this.isExternal = value; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy