// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 // 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: 2012.08.04 at 02:21:33 PM CEST // package eu.prestoprime.model.mets; import java.io.Serializable; 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; /** * structMapType: Complex Type for Structural Maps The structural map * (structMap) outlines a hierarchical structure for the original object being * encoded, using a series of nested div elements. * * * <p> * Java class for structMapType complex type. * * <p> * The following schema fragment specifies the expected content contained within * this class. * * <pre> * <complexType name="structMapType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="div" type="{http://www.loc.gov/METS/}divType"/> * </sequence> * <attribute name="ID" type="{http://www.w3.org/2001/XMLSchema}ID" /> * <attribute name="TYPE" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="LABEL" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "structMapType", propOrder = { "div" }) public class StructMapType implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(required = true) protected DivType div; @XmlAttribute(name = "ID") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlID @XmlSchemaType(name = "ID") protected String id; @XmlAttribute(name = "TYPE") protected String type; @XmlAttribute(name = "LABEL") protected String label; /** * Gets the value of the div property. * * @return possible object is {@link DivType } * */ public DivType getDiv() { return div; } /** * Sets the value of the div property. * * @param value * allowed object is {@link DivType } * */ public void setDiv(DivType value) { this.div = value; } /** * 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 type property. * * @return possible object is {@link String } * */ public String getTYPE() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is {@link String } * */ public void setTYPE(String value) { this.type = value; } /** * Gets the value of the label property. * * @return possible object is {@link String } * */ public String getLABEL() { return label; } /** * Sets the value of the label property. * * @param value * allowed object is {@link String } * */ public void setLABEL(String value) { this.label = value; } }