// // 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: 2012.12.20 at 05:04:39 PM JST // package gen.core.segmentation; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{http://www.lisa.org/srx20}beforebreak" minOccurs="0"/>
 *         <element ref="{http://www.lisa.org/srx20}afterbreak" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="break">
 *         <simpleType>
 *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *             <enumeration value="yes"/>
 *             <enumeration value="no"/>
 *           </restriction>
 *         </simpleType>
 *       </attribute>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "beforebreak", "afterbreak" }) @XmlRootElement(name = "rule") public class Rule { protected Beforebreak beforebreak; protected Afterbreak afterbreak; @XmlAttribute(name = "break") protected String _break; /** * Gets the value of the beforebreak property. * * @return * possible object is * {@link Beforebreak } * */ public Beforebreak getBeforebreak() { return beforebreak; } /** * Sets the value of the beforebreak property. * * @param value * allowed object is * {@link Beforebreak } * */ public void setBeforebreak(Beforebreak value) { this.beforebreak = value; } /** * Gets the value of the afterbreak property. * * @return * possible object is * {@link Afterbreak } * */ public Afterbreak getAfterbreak() { return afterbreak; } /** * Sets the value of the afterbreak property. * * @param value * allowed object is * {@link Afterbreak } * */ public void setAfterbreak(Afterbreak value) { this.afterbreak = value; } /** * Gets the value of the break property. * * @return * possible object is * {@link String } * */ public String getBreak() { return _break; } /** * Sets the value of the break property. * * @param value * allowed object is * {@link String } * */ public void setBreak(String value) { this._break = value; } }