Subversion Repositories XServices

Compare Revisions

No changes between revisions

Ignore whitespace Rev 128 → Rev 129

/xservices-scmtypes/trunk/src/net/brutex/xservices/types/scmfindings/GroupMatchListType.java
0,0 → 1,130
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.2-147
// 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: 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;
 
 
/**
* <p>Java class for GroupMatchListType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="GroupMatchListType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="matchGroup" type="{http://www.w3.org/2001/XMLSchema}int"/>
* &lt;element name="matchAtIndex" type="{http://www.w3.org/2001/XMLSchema}long"/>
* &lt;element name="matchToIndex" type="{http://www.w3.org/2001/XMLSchema}long"/>
* &lt;element name="matchString" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@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;
}
 
}
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property