// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.2-147 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2012.11.16 at 05:17:00 PM MEZ // package net.brutex.xservices.types.scmfindings; import java.io.Serializable; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

Java class for GroupMatchListType complex type. * *

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

 * <complexType name="GroupMatchListType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="matchGroup" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="matchAtIndex" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="matchToIndex" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="matchString" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GroupMatchListType", propOrder = { "matchGroup", "matchAtIndex", "matchToIndex", "matchString" }) public class GroupMatchListType implements Serializable { private final static long serialVersionUID = 19800606L; protected int matchGroup; protected long matchAtIndex; protected long matchToIndex; @XmlElement(required = true) protected String matchString; /** * Gets the value of the matchGroup property. * */ public int getMatchGroup() { return matchGroup; } /** * Sets the value of the matchGroup property. * */ public void setMatchGroup(int value) { this.matchGroup = value; } /** * Gets the value of the matchAtIndex property. * */ public long getMatchAtIndex() { return matchAtIndex; } /** * Sets the value of the matchAtIndex property. * */ public void setMatchAtIndex(long value) { this.matchAtIndex = value; } /** * Gets the value of the matchToIndex property. * */ public long getMatchToIndex() { return matchToIndex; } /** * Sets the value of the matchToIndex property. * */ public void setMatchToIndex(long value) { this.matchToIndex = value; } /** * Gets the value of the matchString property. * * @return * possible object is * {@link String } * */ public String getMatchString() { return matchString; } /** * Sets the value of the matchString property. * * @param value * allowed object is * {@link String } * */ public void setMatchString(String value) { this.matchString = value; } }