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

no.ntnu.ihb.sspgen.ssp.ParameterMapping Maven / Gradle / Ivy

There is a newer version: 0.5.2
Show newest version

package no.ntnu.ihb.sspgen.ssp;

import javax.xml.bind.annotation.*;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
import java.util.ArrayList;
import java.util.List;


/**
 * 

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="MappingEntry" type="{http://ssp-standard.org/SSP1/SystemStructureParameterMapping}TMappingEntry" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="Annotations" type="{http://ssp-standard.org/SSP1/SystemStructureCommon}TAnnotations" minOccurs="0"/>
 *       </sequence>
 *       <attGroup ref="{http://ssp-standard.org/SSP1/SystemStructureCommon}ATopLevelMetaData"/>
 *       <attGroup ref="{http://ssp-standard.org/SSP1/SystemStructureCommon}ABaseElement"/>
 *       <attribute name="version" use="required">
 *         <simpleType>
 *           <restriction base="{http://www.w3.org/2001/XMLSchema}normalizedString">
 *             <pattern value="1[.][0-9]+(-.*)?"/>
 *           </restriction>
 *         </simpleType>
 *       </attribute>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "mappingEntry", "annotations" }) @XmlRootElement(name = "ParameterMapping", namespace = "http://ssp-standard.org/SSP1/SystemStructureParameterMapping") public class ParameterMapping { @XmlElement(name = "MappingEntry", namespace = "http://ssp-standard.org/SSP1/SystemStructureParameterMapping") protected List mappingEntry; @XmlElement(name = "Annotations", namespace = "http://ssp-standard.org/SSP1/SystemStructureParameterMapping") protected TAnnotations annotations; @XmlAttribute(name = "version", required = true) @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String version; @XmlAttribute(name = "author") protected String author; @XmlAttribute(name = "fileversion") @XmlJavaTypeAdapter(NormalizedStringAdapter.class) @XmlSchemaType(name = "normalizedString") protected String fileversion; @XmlAttribute(name = "copyright") protected String copyright; @XmlAttribute(name = "license") protected String license; @XmlAttribute(name = "generationTool") @XmlJavaTypeAdapter(NormalizedStringAdapter.class) @XmlSchemaType(name = "normalizedString") protected String generationTool; @XmlAttribute(name = "generationDateAndTime") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar generationDateAndTime; @XmlAttribute(name = "id") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlID @XmlSchemaType(name = "ID") protected String id; @XmlAttribute(name = "description") protected String description; /** * Gets the value of the mappingEntry 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 mappingEntry property. * *

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

     *    getMappingEntry().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link TMappingEntry } * * */ public List getMappingEntry() { if (mappingEntry == null) { mappingEntry = new ArrayList(); } return this.mappingEntry; } /** * Gets the value of the annotations property. * * @return * possible object is * {@link TAnnotations } * */ public TAnnotations getAnnotations() { return annotations; } /** * Sets the value of the annotations property. * * @param value * allowed object is * {@link TAnnotations } * */ public void setAnnotations(TAnnotations value) { this.annotations = value; } /** * Gets the value of the version property. * * @return * possible object is * {@link String } * */ public String getVersion() { return version; } /** * Sets the value of the version property. * * @param value * allowed object is * {@link String } * */ public void setVersion(String value) { this.version = value; } /** * Gets the value of the author property. * * @return * possible object is * {@link String } * */ public String getAuthor() { return author; } /** * Sets the value of the author property. * * @param value * allowed object is * {@link String } * */ public void setAuthor(String value) { this.author = value; } /** * Gets the value of the fileversion property. * * @return * possible object is * {@link String } * */ public String getFileversion() { return fileversion; } /** * Sets the value of the fileversion property. * * @param value * allowed object is * {@link String } * */ public void setFileversion(String value) { this.fileversion = value; } /** * Gets the value of the copyright property. * * @return * possible object is * {@link String } * */ public String getCopyright() { return copyright; } /** * Sets the value of the copyright property. * * @param value * allowed object is * {@link String } * */ public void setCopyright(String value) { this.copyright = value; } /** * Gets the value of the license property. * * @return * possible object is * {@link String } * */ public String getLicense() { return license; } /** * Sets the value of the license property. * * @param value * allowed object is * {@link String } * */ public void setLicense(String value) { this.license = value; } /** * Gets the value of the generationTool property. * * @return * possible object is * {@link String } * */ public String getGenerationTool() { return generationTool; } /** * Sets the value of the generationTool property. * * @param value * allowed object is * {@link String } * */ public void setGenerationTool(String value) { this.generationTool = value; } /** * Gets the value of the generationDateAndTime property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getGenerationDateAndTime() { return generationDateAndTime; } /** * Sets the value of the generationDateAndTime property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setGenerationDateAndTime(XMLGregorianCalendar value) { this.generationDateAndTime = 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 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; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy