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

de.drv.dsrv.extrastandard.namespace.messages.Flag Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-b10 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2013.02.27 at 11:29:43 PM CET 
//


package de.drv.dsrv.extrastandard.namespace.messages;

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.XmlType;


/**
 * 

Java class for FlagType complex type. * *

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

 * <complexType name="FlagType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Code" type="{http://www.extra-standard.de/namespace/message/1}FlagCodeType"/>
 *         <element name="Text" type="{http://www.extra-standard.de/namespace/message/1}TextType"/>
 *       </sequence>
 *       <attribute name="weight" use="required" type="{http://www.extra-standard.de/namespace/message/1}WeightCodeType" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FlagType", propOrder = { "code", "text" }) public class Flag { @XmlElement(name = "Code", required = true) protected FlagCode code; @XmlElement(name = "Text", required = true) protected Text text; @XmlAttribute(name = "weight", required = true) protected String weight; /** * Gets the value of the code property. * * @return * possible object is * {@link FlagCode } * */ public FlagCode getCode() { return code; } /** * Sets the value of the code property. * * @param value * allowed object is * {@link FlagCode } * */ public void setCode(FlagCode value) { this.code = value; } /** * Gets the value of the text property. * * @return * possible object is * {@link Text } * */ public Text getText() { return text; } /** * Sets the value of the text property. * * @param value * allowed object is * {@link Text } * */ public void setText(Text value) { this.text = value; } /** * Gets the value of the weight property. * * @return * possible object is * {@link String } * */ public String getWeight() { return weight; } /** * Sets the value of the weight property. * * @param value * allowed object is * {@link String } * */ public void setWeight(String value) { this.weight = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy