//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-520 
// 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: 2015.08.05 at 08:54:31 PM PDT 
//


package org.hibernate.internal.jaxb.cfg;

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 listener-element complex type.

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

<complexType name="listener-element">
  <complexContent>
    <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
      <attribute name="class" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
      <attribute name="type" type="{http://www.hibernate.org/xsd/hibernate-configuration}type-attribute" />
    </restriction>
  </complexContent>
</complexType>
/** * <p>Java class for listener-element complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;complexType name="listener-element"> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;attribute name="class" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="type" type="{http://www.hibernate.org/xsd/hibernate-configuration}type-attribute" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * </pre> * * */
@XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "listener-element") public class JaxbListenerElement { @XmlAttribute(name = "class", required = true) protected String clazz; @XmlAttribute protected JaxbTypeAttribute type;
Gets the value of the clazz property.
Returns: possible object is String
/** * Gets the value of the clazz property. * * @return * possible object is * {@link String } * */
public String getClazz() { return clazz; }
Sets the value of the clazz property.
Params:
  • value – allowed object is String
/** * Sets the value of the clazz property. * * @param value * allowed object is * {@link String } * */
public void setClazz(String value) { this.clazz = value; }
Gets the value of the type property.
Returns: possible object is JaxbTypeAttribute
/** * Gets the value of the type property. * * @return * possible object is * {@link JaxbTypeAttribute } * */
public JaxbTypeAttribute getType() { return type; }
Sets the value of the type property.
Params:
/** * Sets the value of the type property. * * @param value * allowed object is * {@link JaxbTypeAttribute } * */
public void setType(JaxbTypeAttribute value) { this.type = value; } }