// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs // 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: 2011.02.17 at 08:38:41 odp. CET // package net.javacrumbs.smock.common.server.test; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="a" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="b" type="{http://www.w3.org/2001/XMLSchema}int"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "a", "b" }) @XmlRootElement(name = "plusRequest", namespace = "http://javacrumbs.net/calc") public class PlusRequest { @XmlElement(namespace = "http://javacrumbs.net/calc") protected int a; @XmlElement(namespace = "http://javacrumbs.net/calc") protected int b; /** * Gets the value of the a property. * */ public int getA() { return a; } /** * Sets the value of the a property. * */ public void setA(int value) { this.a = value; } /** * Gets the value of the b property. * */ public int getB() { return b; } /** * Sets the value of the b property. * */ public void setB(int value) { this.b = value; } }