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

org.hibernate.internal.jaxb.mapping.hbm.JaxbListIndexElement Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha1
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-520 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2015.01.06 at 12:10:24 PM PST 
//


package org.hibernate.internal.jaxb.mapping.hbm;

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


/**
 * 

Java class for list-index-element complex type. * *

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

 * <complexType name="list-index-element">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="column" type="{http://www.hibernate.org/xsd/hibernate-mapping}column-element" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="base" type="{http://www.w3.org/2001/XMLSchema}string" default="0" />
 *       <attribute name="column" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "list-index-element", propOrder = { "column" }) public class JaxbListIndexElement { protected JaxbColumnElement column; @XmlAttribute protected String base; @XmlAttribute(name = "column") protected String columnAttribute; /** * Gets the value of the column property. * * @return * possible object is * {@link JaxbColumnElement } * */ public JaxbColumnElement getColumn() { return column; } /** * Sets the value of the column property. * * @param value * allowed object is * {@link JaxbColumnElement } * */ public void setColumn(JaxbColumnElement value) { this.column = value; } /** * Gets the value of the base property. * * @return * possible object is * {@link String } * */ public String getBase() { if (base == null) { return "0"; } else { return base; } } /** * Sets the value of the base property. * * @param value * allowed object is * {@link String } * */ public void setBase(String value) { this.base = value; } /** * Gets the value of the columnAttribute property. * * @return * possible object is * {@link String } * */ public String getColumnAttribute() { return columnAttribute; } /** * Sets the value of the columnAttribute property. * * @param value * allowed object is * {@link String } * */ public void setColumnAttribute(String value) { this.columnAttribute = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy