package at.gv.util.xsd.ur_V2.search; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; /** *

Java class for Rechtsform complex type. * *

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

 * <complexType name="Rechtsform">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="ReForm" type="{http://statistik.at/namespace/ur/simpleTypes/2#}RechtsformTyp" minOccurs="0"/>
 *         <element name="ReFormText" type="{http://statistik.at/namespace/ur/simpleTypes/2#}RechtsformTextTyp" minOccurs="0"/>
 *         <element name="ReFormExtern" type="{http://statistik.at/namespace/ur/simpleTypes/2#}RechtsformTyp"/>
 *         <element name="ReFormExternText" type="{http://statistik.at/namespace/ur/simpleTypes/2#}RechtsformTextTyp" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Rechtsform", propOrder = { "reForm", "reFormText", "reFormExtern", "reFormExternText" }) @XmlSeeAlso({ RechtsformVollzug.class }) public abstract class Rechtsform { @XmlElement(name = "ReForm") protected Integer reForm; @XmlElement(name = "ReFormText") protected String reFormText; @XmlElement(name = "ReFormExtern") protected int reFormExtern; @XmlElement(name = "ReFormExternText") protected String reFormExternText; /** * Gets the value of the reForm property. * * @return * possible object is * {@link Integer } * */ public Integer getReForm() { return reForm; } /** * Sets the value of the reForm property. * * @param value * allowed object is * {@link Integer } * */ public void setReForm(Integer value) { this.reForm = value; } /** * Gets the value of the reFormText property. * * @return * possible object is * {@link String } * */ public String getReFormText() { return reFormText; } /** * Sets the value of the reFormText property. * * @param value * allowed object is * {@link String } * */ public void setReFormText(String value) { this.reFormText = value; } /** * Gets the value of the reFormExtern property. * */ public int getReFormExtern() { return reFormExtern; } /** * Sets the value of the reFormExtern property. * */ public void setReFormExtern(int value) { this.reFormExtern = value; } /** * Gets the value of the reFormExternText property. * * @return * possible object is * {@link String } * */ public String getReFormExternText() { return reFormExternText; } /** * Sets the value of the reFormExternText property. * * @param value * allowed object is * {@link String } * */ public void setReFormExternText(String value) { this.reFormExternText = value; } }