/* * Dog - Core * * Copyright (c) 2009-2014 Dario Bonino and Luigi De Russis * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License */ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // 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: 2014.02.15 at 03:00:00 PM CEST // package it.polito.elite.dog.core.library.jaxb; import java.util.ArrayList; import java.util.Iterator; 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.XmlID; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import org.codehaus.jackson.annotate.JsonProperty; /** * <p> * Java class for flat complex type. * * <p> * The following schema fragment specifies the expected content contained within * this class. * * <pre> * <complexType name="flat"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="room" type="{http://elite.polito.it/dogHomeConfiguration}room" maxOccurs="unbounded"/> * </sequence> * <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" /> * <attribute name="svgfootprint" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> * <attribute name="class" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "flat", propOrder = { "description", "room" }) public class Flat implements Cloneable { protected String description; @XmlElement(required = true) @JsonProperty("rooms") protected List<Room> room; @XmlAttribute(name = "id") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlID @XmlSchemaType(name = "ID") protected String id; @XmlAttribute(name = "svgfootprint") @XmlSchemaType(name = "anyURI") protected String svgfootprint; @XmlAttribute(name = "class") @JsonProperty("class") protected String clazz; /** * Creates a new {@code Flat} instance. * */ public Flat() { // CC-XJC Version 2.0.1 Build 2012-03-02T12:09:12+0000 super(); } /** * Creates a new {@code Flat} instance by deeply copying a given * {@code Flat} instance. * * * @param o * The instance to copy. * @throws NullPointerException * if {@code o} is {@code null}. */ public Flat(final Flat o) { // CC-XJC Version 2.0.1 Build 2012-03-02T12:09:12+0000 super(); if (o == null) { throw new NullPointerException("Cannot create a copy of 'Flat' from 'null'."); } // CBuiltinLeafInfo: java.lang.String this.description = ((o.description == null) ? null : o.getDescription()); // 'Room' collection. if (o.room != null) { copyRoom(o.getRoom(), this.getRoom()); } // CBuiltinLeafInfo: java.lang.String this.id = ((o.id == null) ? null : o.getId()); // CBuiltinLeafInfo: java.lang.String this.svgfootprint = ((o.svgfootprint == null) ? null : o.getSvgfootprint()); // CBuiltinLeafInfo: java.lang.String this.clazz = ((o.clazz == null) ? null : o.getClazz()); } /** * Gets the value of the description property. * * @return possible object is {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the room property. * * <p> * 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 * <CODE>set</CODE> method for the room property. * * <p> * For example, to add a new item, do as follows: * * <pre> * getRoom().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list {@link Room } * * */ public List<Room> getRoom() { if (room == null) { room = new ArrayList<Room>(); } return this.room; } /** * Gets the value of the id property. * * @return possible object is {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is {@link String } * */ public void setId(String value) { this.id = value; } /** * Gets the value of the svgfootprint property. * * @return possible object is {@link String } * */ public String getSvgfootprint() { return svgfootprint; } /** * Sets the value of the svgfootprint property. * * @param value * allowed object is {@link String } * */ public void setSvgfootprint(String value) { this.svgfootprint = value; } /** * Gets the value of the clazz property. * * @return possible object is {@link String } * */ public String getClazz() { return clazz; } /** * Sets the value of the clazz property. * * @param value * allowed object is {@link String } * */ public void setClazz(String value) { this.clazz = value; } /** * Copies all values of property {@code Room} deeply. * * @param source * The source to copy from. * @param target * The target to copy {@code source} to. * @throws NullPointerException * if {@code target} is {@code null}. */ private static void copyRoom(final List<Room> source, final List<Room> target) { // CC-XJC Version 2.0.1 Build 2012-03-02T12:09:12+0000 if ((source != null) && (!source.isEmpty())) { for (final Iterator<?> it = source.iterator(); it.hasNext();) { final Object next = it.next(); if (next instanceof Room) { // CClassInfo: it.polito.elite.dog.core.library.jaxb.Room target.add(((Room) next).clone()); continue; } // Please report this at // https://apps.sourceforge.net/mantisbt/ccxjc/ throw new AssertionError( (("Unexpected instance '" + next) + "' for property 'Room' of class 'it.polito.elite.dog.core.library.jaxb.Flat'.")); } } } /** * Creates and returns a deep copy of this object. * * * @return A deep copy of this object. */ @Override public Flat clone() { try { { // CC-XJC Version 2.0.1 Build 2012-03-02T12:09:12+0000 final Flat clone = ((Flat) super.clone()); // CBuiltinLeafInfo: java.lang.String clone.description = ((this.description == null) ? null : this.getDescription()); // 'Room' collection. if (this.room != null) { clone.room = null; copyRoom(this.getRoom(), clone.getRoom()); } // CBuiltinLeafInfo: java.lang.String clone.id = ((this.id == null) ? null : this.getId()); // CBuiltinLeafInfo: java.lang.String clone.svgfootprint = ((this.svgfootprint == null) ? null : this.getSvgfootprint()); // CBuiltinLeafInfo: java.lang.String clone.clazz = ((this.clazz == null) ? null : this.getClazz()); return clone; } } catch (CloneNotSupportedException e) { // Please report this at // https://apps.sourceforge.net/mantisbt/ccxjc/ throw new AssertionError(e); } } }