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

io.github.oliviercailloux.xmcda_2_2_1_jaxb.X2Point Maven / Gradle / Ivy

Go to download

Java source for (un)marshalling XMCDA-2.2.1 files, JAXB-generated from the schema.

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


package io.github.oliviercailloux.xmcda_2_2_1_jaxb;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * A point via an abscissa and an ordinate.
 * 
 * 

Java class for point complex type. * *

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

 * <complexType name="point">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="abscissa" type="{http://www.decision-deck.org/2012/XMCDA-2.2.1}value"/>
 *         <element name="ordinate" type="{http://www.decision-deck.org/2012/XMCDA-2.2.1}value"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "point", propOrder = { "abscissa", "ordinate" }) public class X2Point { @XmlElement(required = true) protected X2Value abscissa; @XmlElement(required = true) protected X2Value ordinate; /** * Gets the value of the abscissa property. * * @return * possible object is * {@link X2Value } * */ public X2Value getAbscissa() { return abscissa; } /** * Sets the value of the abscissa property. * * @param value * allowed object is * {@link X2Value } * */ public void setAbscissa(X2Value value) { this.abscissa = value; } /** * Gets the value of the ordinate property. * * @return * possible object is * {@link X2Value } * */ public X2Value getOrdinate() { return ordinate; } /** * Sets the value of the ordinate property. * * @param value * allowed object is * {@link X2Value } * */ public void setOrdinate(X2Value value) { this.ordinate = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy